diff --git a/Jenkinsfile b/Jenkinsfile
index 06c815c6d5..d2497a0d87 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -4,11 +4,11 @@ pipeline {
   environment {
     lockFilePath = null
     version = null
-    silverpeasCore = 'Master'
+    silverpeasCore = null
   }
   agent {
     docker {
-      image 'silverpeas/silverbuild'
+      image 'silverpeas/silverbuild:6.3.3'
       args '''
         -v $HOME/.m2:/home/silverbuild/.m2 
         -v $HOME/.gitconfig:/home/silverbuild/.gitconfig 
@@ -22,6 +22,11 @@ pipeline {
       steps {
         script {
           master = env.BRANCH_NAME == 'master'
+          if (master) {
+            silverpeasCore = 'Master'
+          } else {
+            silverpeasCore = 'Stable'
+          }
           version = computeSnapshotVersion()
           lockFilePath = createLockFile(version, 'components')
           waitForDependencyRunningBuildIfAny(version, 'core')
@@ -56,22 +61,24 @@ pipeline {
       when {
         expression {
           env.BRANCH_NAME.startsWith('PR') &&
-              env.CHANGE_URL?.startsWith('https://github.com/Silverpeas') &&
-              !version.startsWith(env.STABLE_BRANCH.replace('.x', ''))
+              env.CHANGE_URL?.startsWith('https://github.com/Silverpeas')
         }
       }
       steps {
         script {
+          String jdkHome = sh(script: 'echo ${SONAR_JDK_HOME}', returnStdout: true).trim()
           withSonarQubeEnv {
             sh """
-                mvn ${SONAR_MAVEN_GOAL} -Dsonar.projectKey=Silverpeas_Silverpeas-Components \\
+                JAVA_HOME=$jdkHome mvn $SONAR_MAVEN_GOAL \\
+                  -Dsonar.projectKey=Silverpeas_Silverpeas-Components \\
                   -Dsonar.organization=silverpeas \\
                   -Dsonar.pullrequest.branch=${env.BRANCH_NAME} \\
                   -Dsonar.pullrequest.key=${env.CHANGE_ID} \\
                   -Dsonar.pullrequest.base=master \\
                   -Dsonar.pullrequest.provider=github \\
                   -Dsonar.host.url=${SONAR_HOST_URL} \\
-                  -Dsonar.login=${SONAR_AUTH_TOKEN}
+                  -Dsonar.token=${SONAR_AUTH_TOKEN} \\
+                  -Dsonar.scanner.force-deprecated-java-version=true
                 """
           }
           timeout(time: 30, unit: 'MINUTES') {
diff --git a/almanach/almanach-configuration/pom.xml b/almanach/almanach-configuration/pom.xml
index d9b60b3605..22b4263d9e 100644
--- a/almanach/almanach-configuration/pom.xml
+++ b/almanach/almanach-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>almanach</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.almanach</groupId>
diff --git a/almanach/almanach-configuration/src/main/config/migrations/modules/almanach-migration.xml b/almanach/almanach-configuration/src/main/config/migrations/modules/almanach-migration.xml
index a99e1e4714..a57fdc1ee5 100644
--- a/almanach/almanach-configuration/src/main/config/migrations/modules/almanach-migration.xml
+++ b/almanach/almanach-configuration/src/main/config/migrations/modules/almanach-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <migration module="almanach"
diff --git a/almanach/almanach-configuration/src/main/config/migrations/scripts/almanach/up005/moveToCalendarEngine.groovy b/almanach/almanach-configuration/src/main/config/migrations/scripts/almanach/up005/moveToCalendarEngine.groovy
index 16ef8aed9c..aa60825bcd 100644
--- a/almanach/almanach-configuration/src/main/config/migrations/scripts/almanach/up005/moveToCalendarEngine.groovy
+++ b/almanach/almanach-configuration/src/main/config/migrations/scripts/almanach/up005/moveToCalendarEngine.groovy
@@ -1,5 +1,5 @@
 /**
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 import java.sql.SQLException
diff --git a/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach.properties b/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach.properties
index ed8fc6688b..6da91f59d9 100644
--- a/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach.properties
+++ b/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 suppressionConfirmation = Etes-vous s\u00fbr(e) de vouloir supprimer cet \u00e9v\u00e9nement
 aucunEvenement = Aucun \u00e9v\u00e9nement programm\u00e9
diff --git a/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach_de.properties b/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach_de.properties
index c25d6bd8bc..c859d43f51 100644
--- a/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach_de.properties
+++ b/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 suppressionConfirmation = Sind Sie sicher, das Ereignis l\u00f6schen zu wollen?
diff --git a/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach_en.properties b/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach_en.properties
index c99dd355e0..6a65832da5 100644
--- a/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach_en.properties
+++ b/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 suppressionConfirmation = Are you sure you want to delete this event?
 aucunEvenement = No events
diff --git a/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach_fr.properties b/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach_fr.properties
index 5ded89d651..ae304a3aff 100644
--- a/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach_fr.properties
+++ b/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/multilang/almanach_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 suppressionConfirmation = Etes-vous s\u00fbr(e) de vouloir supprimer cet \u00e9v\u00e9nement
 aucunEvenement = Aucun \u00e9v\u00e9nement programm\u00e9
diff --git a/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/settings/almanachIcons.properties b/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/settings/almanachIcons.properties
index e3d4408d34..b0842274df 100644
--- a/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/settings/almanachIcons.properties
+++ b/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/settings/almanachIcons.properties
@@ -1,4 +1,4 @@
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -10,7 +10,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -18,7 +18,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 almanach.icons.addEvent=/util/icons/create-action/add-event.png
 almanach.icons.addCalendar=/util/icons/create-action/add-table.png
diff --git a/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/settings/almanachSettings.properties b/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/settings/almanachSettings.properties
index e58c783af3..c9330165c2 100644
--- a/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/settings/almanachSettings.properties
+++ b/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/almanach/settings/almanachSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 # 0=In sub/spaces only  1=in current space and subspaces 2=All almanachs
diff --git a/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/util/logging/almanachLogging.properties b/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/util/logging/almanachLogging.properties
index ddc59c81c5..0660367168 100644
--- a/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/util/logging/almanachLogging.properties
+++ b/almanach/almanach-configuration/src/main/config/properties/org/silverpeas/util/logging/almanachLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/almanach/almanach-configuration/src/main/config/xmlcomponents/almanach.xml b/almanach/almanach-configuration/src/main/config/xmlcomponents/almanach.xml
index 80339df117..20eb1157e0 100644
--- a/almanach/almanach-configuration/src/main/config/xmlcomponents/almanach.xml
+++ b/almanach/almanach-configuration/src/main/config/xmlcomponents/almanach.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <WAComponent xmlns="http://silverpeas.org/xml/ns/component" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
diff --git a/almanach/almanach-library/pom.xml b/almanach/almanach-library/pom.xml
index c4513fc0d9..abd7b33bca 100644
--- a/almanach/almanach-library/pom.xml
+++ b/almanach/almanach-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>almanach</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.almanach</groupId>
diff --git a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachContentManager.java b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachContentManager.java
index 2dc34e562e..832dd4d96c 100644
--- a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachContentManager.java
+++ b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachContentManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.almanach;
 
diff --git a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachInstancePostConstruction.java b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachInstancePostConstruction.java
index 9e72472311..e8d1db61c3 100644
--- a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachInstancePostConstruction.java
+++ b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.almanach;
 
diff --git a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachInstancePreDestruction.java b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachInstancePreDestruction.java
index 1a2a3201ff..466ac4e22e 100644
--- a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachInstancePreDestruction.java
+++ b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.almanach;
 
diff --git a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachRuntimeException.java b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachRuntimeException.java
index 231948d99f..0a728fed5b 100644
--- a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachRuntimeException.java
+++ b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.almanach;
diff --git a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachService.java b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachService.java
index eab237297e..7b2cae6a19 100644
--- a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachService.java
+++ b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.almanach;
diff --git a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachSettings.java b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachSettings.java
index c92481483a..dee30ef9ad 100644
--- a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachSettings.java
+++ b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachSettings.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.almanach;
 
diff --git a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachStatistics.java b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachStatistics.java
index a3396b6c89..501ca25090 100644
--- a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachStatistics.java
+++ b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/AlmanachStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.almanach;
 
diff --git a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/subscription/AlmanachSubscriptionService.java b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/subscription/AlmanachSubscriptionService.java
index 2fb130f835..6469ca9fea 100644
--- a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/subscription/AlmanachSubscriptionService.java
+++ b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/subscription/AlmanachSubscriptionService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.almanach.subscription;
diff --git a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/workflowextensions/AlmanachTriggerParam.java b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/workflowextensions/AlmanachTriggerParam.java
index 2f2771fc47..76ea936772 100644
--- a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/workflowextensions/AlmanachTriggerParam.java
+++ b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/workflowextensions/AlmanachTriggerParam.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.almanach.workflowextensions;
 
diff --git a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/workflowextensions/SendInAlmanach.java b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/workflowextensions/SendInAlmanach.java
index 696938a055..201aca907c 100644
--- a/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/workflowextensions/SendInAlmanach.java
+++ b/almanach/almanach-library/src/main/java/org/silverpeas/components/almanach/workflowextensions/SendInAlmanach.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.almanach.workflowextensions;
 
diff --git a/almanach/almanach-war/pom.xml b/almanach/almanach-war/pom.xml
index bb936f5c9a..4c38ae9ea6 100644
--- a/almanach/almanach-war/pom.xml
+++ b/almanach/almanach-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>almanach</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.almanach</groupId>
diff --git a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachIndexer.java b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachIndexer.java
index e8b4bb90a6..24964ee8dc 100644
--- a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachIndexer.java
+++ b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.almanach;
 
diff --git a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachInstanceRoutingMap.java b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachInstanceRoutingMap.java
index 4a4724da1c..d6a69f8668 100644
--- a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachInstanceRoutingMap.java
+++ b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachInstanceRoutingMap.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.almanach;
diff --git a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachTimeWindowViewContext.java b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachTimeWindowViewContext.java
index 2ca563713d..7e4f12086f 100644
--- a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachTimeWindowViewContext.java
+++ b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachTimeWindowViewContext.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.almanach;
 
diff --git a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachWebController.java b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachWebController.java
index 683a8b8727..5cb4a81302 100644
--- a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachWebController.java
+++ b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachWebController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.almanach;
 
diff --git a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachWebRequestContext.java b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachWebRequestContext.java
index 1655628d6f..bc260b729b 100644
--- a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachWebRequestContext.java
+++ b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/AlmanachWebRequestContext.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.almanach;
 
diff --git a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/GoToEvent.java b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/GoToEvent.java
index b498fa4d7b..c8f108eecd 100644
--- a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/GoToEvent.java
+++ b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/GoToEvent.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.almanach;
 
diff --git a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/ResultSearchRenderer.java b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/ResultSearchRenderer.java
index 3b9a7c0f31..93a92722f9 100644
--- a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/ResultSearchRenderer.java
+++ b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/ResultSearchRenderer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.almanach;
 
diff --git a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/notification/AlmanachInstanceManualUserNotification.java b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/notification/AlmanachInstanceManualUserNotification.java
index 03c57b6926..07f6ae0507 100644
--- a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/notification/AlmanachInstanceManualUserNotification.java
+++ b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/notification/AlmanachInstanceManualUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.almanach.notification;
diff --git a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/services/AlmanachCalendarResource.java b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/services/AlmanachCalendarResource.java
index ae6ba5107d..fec50717db 100644
--- a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/services/AlmanachCalendarResource.java
+++ b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/services/AlmanachCalendarResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.almanach.services;
diff --git a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/services/AlmanachICalendarResource.java b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/services/AlmanachICalendarResource.java
index fb0a88e6bf..6c19464191 100644
--- a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/services/AlmanachICalendarResource.java
+++ b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/services/AlmanachICalendarResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.almanach.services;
diff --git a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/services/AlmanachWebManager.java b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/services/AlmanachWebManager.java
index 24fb1522b9..54f8834b1c 100644
--- a/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/services/AlmanachWebManager.java
+++ b/almanach/almanach-war/src/main/java/org/silverpeas/components/almanach/services/AlmanachWebManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.almanach.services;
@@ -121,9 +121,11 @@ private List<String> getComponentInstanceIdsToAggregateWith(final Collection<Str
     componentAccessController
         .filterAuthorizedByUser(customAggregationComponentIds, User.getCurrentRequester().getId())
         .forEach(result::add);
-    result.addAll(getAlmanachIdsByDefaultAggregation(componentsWithDefaultAggregation).stream()
-        .map(SilverpeasComponentInstance::getId)
-        .collect(Collectors.toList()));
+    if (customAggregations.isEmpty()) {
+      result.addAll(getAlmanachIdsByDefaultAggregation(componentsWithDefaultAggregation).stream()
+          .map(SilverpeasComponentInstance::getId)
+          .collect(Collectors.toList()));
+    }
     return result;
   }
 
diff --git a/almanach/almanach-war/src/main/webapp/WEB-INF/web.xml b/almanach/almanach-war/src/main/webapp/WEB-INF/web.xml
index e7e78c32dc..f93fd13e4d 100644
--- a/almanach/almanach-war/src/main/webapp/WEB-INF/web.xml
+++ b/almanach/almanach-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/almanach/almanach-war/src/main/webapp/almanach/jsp/almanach.jsp b/almanach/almanach-war/src/main/webapp/almanach/jsp/almanach.jsp
index 13143e6ccd..0f90bda335 100644
--- a/almanach/almanach-war/src/main/webapp/almanach/jsp/almanach.jsp
+++ b/almanach/almanach-war/src/main/webapp/almanach/jsp/almanach.jsp
@@ -1,5 +1,5 @@
 <%@ page import="org.silverpeas.components.almanach.AlmanachSettings" %><%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ include file="almanachCheck.jsp" %>
diff --git a/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachCheck.jsp b/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachCheck.jsp
index ee6ea4c6e6..57747a53b4 100644
--- a/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachCheck.jsp
+++ b/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachCheck.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%
   response.setHeader("Cache-Control", "no-store"); //HTTP 1.1
diff --git a/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachOccurrenceEdit.jsp b/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachOccurrenceEdit.jsp
index 3c0b649a87..f4177d9280 100644
--- a/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachOccurrenceEdit.jsp
+++ b/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachOccurrenceEdit.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ include file="almanachCheck.jsp" %>
diff --git a/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachOccurrenceView.jsp b/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachOccurrenceView.jsp
index 57e51e1445..581fcf3676 100644
--- a/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachOccurrenceView.jsp
+++ b/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachOccurrenceView.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ page import="org.silverpeas.core.admin.user.model.SilverpeasRole" %>
diff --git a/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachPortlet.jsp b/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachPortlet.jsp
index a9fa845554..bca9784de3 100644
--- a/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachPortlet.jsp
+++ b/almanach/almanach-war/src/main/webapp/almanach/jsp/almanachPortlet.jsp
@@ -1,5 +1,5 @@
 <%@ page import="org.silverpeas.components.almanach.AlmanachSettings" %><%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ include file="almanachCheck.jsp" %>
diff --git a/almanach/almanach-war/src/main/webapp/almanach/jsp/javaScript/angularjs/almanachcalendar.js b/almanach/almanach-war/src/main/webapp/almanach/jsp/javaScript/angularjs/almanachcalendar.js
index d2ed53292c..9d5f0b6828 100644
--- a/almanach/almanach-war/src/main/webapp/almanach/jsp/javaScript/angularjs/almanachcalendar.js
+++ b/almanach/almanach-war/src/main/webapp/almanach/jsp/javaScript/angularjs/almanachcalendar.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /* The angularjs application with its dependencies */
diff --git a/almanach/almanach-war/src/main/webapp/almanach/jsp/javaScript/angularjs/services/almanachcalendar.js b/almanach/almanach-war/src/main/webapp/almanach/jsp/javaScript/angularjs/services/almanachcalendar.js
index a283e1a991..789f3f1c2d 100644
--- a/almanach/almanach-war/src/main/webapp/almanach/jsp/javaScript/angularjs/services/almanachcalendar.js
+++ b/almanach/almanach-war/src/main/webapp/almanach/jsp/javaScript/angularjs/services/almanachcalendar.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 (function() {
diff --git a/almanach/almanach-war/src/main/webapp/almanach/jsp/styleSheets/almanach.css b/almanach/almanach-war/src/main/webapp/almanach/jsp/styleSheets/almanach.css
index 0678de323e..505fff7052 100644
--- a/almanach/almanach-war/src/main/webapp/almanach/jsp/styleSheets/almanach.css
+++ b/almanach/almanach-war/src/main/webapp/almanach/jsp/styleSheets/almanach.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,5 +19,5 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
\ No newline at end of file
diff --git a/almanach/pom.xml b/almanach/pom.xml
index 8f8e6d1eec..860271f59f 100644
--- a/almanach/pom.xml
+++ b/almanach/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
   
   <groupId>org.silverpeas.components</groupId>
diff --git a/blog/blog-configuration/pom.xml b/blog/blog-configuration/pom.xml
index e86f05261b..6f55b7b626 100644
--- a/blog/blog-configuration/pom.xml
+++ b/blog/blog-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>blog</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.blog</groupId>
diff --git a/blog/blog-configuration/src/main/config/migrations/modules/blog-migration.xml b/blog/blog-configuration/src/main/config/migrations/modules/blog-migration.xml
index a1971abe47..5652ff3f13 100644
--- a/blog/blog-configuration/src/main/config/migrations/modules/blog-migration.xml
+++ b/blog/blog-configuration/src/main/config/migrations/modules/blog-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   -->
 <migration module="blog"
            xmlns="http://silverpeas.org/xml/ns/migration"
diff --git a/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle.properties b/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle.properties
index 0ac7179a31..061e60e5e4 100644
--- a/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle.properties
+++ b/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 blog.newPost = Cr\u00e9er un nouveau billet
 blog.content = Contenu
diff --git a/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle_de.properties b/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle_de.properties
index 3aec9ae8de..edb3299385 100644
--- a/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle_de.properties
+++ b/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 blog.newPost = Erstellen eines neuen Beitrages
 blog.content = Inhalt
diff --git a/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle_en.properties b/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle_en.properties
index 986c25d656..1676a6a9d2 100644
--- a/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle_en.properties
+++ b/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 blog.newPost = Create a post
 blog.content = Content
diff --git a/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle_fr.properties b/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle_fr.properties
index 0ac7179a31..061e60e5e4 100644
--- a/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle_fr.properties
+++ b/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/multilang/blogBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 blog.newPost = Cr\u00e9er un nouveau billet
 blog.content = Contenu
diff --git a/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/settings/blogIcons.properties b/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/settings/blogIcons.properties
index 784880feda..68c922fca5 100644
--- a/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/settings/blogIcons.properties
+++ b/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/settings/blogIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 blog.logo = /blog/jsp/icons/logo.gif
 
diff --git a/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/settings/blogSettings.properties b/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/settings/blogSettings.properties
index dde5d2d996..7f2ccdab86 100644
--- a/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/settings/blogSettings.properties
+++ b/blog/blog-configuration/src/main/config/properties/org/silverpeas/blog/settings/blogSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 templatePath=${env.SILVERPEAS_HOME}/resources/StringTemplates/components/blog/
diff --git a/blog/blog-configuration/src/main/config/properties/org/silverpeas/util/logging/blogLogging.properties b/blog/blog-configuration/src/main/config/properties/org/silverpeas/util/logging/blogLogging.properties
index 2a78247009..c15e28876e 100644
--- a/blog/blog-configuration/src/main/config/properties/org/silverpeas/util/logging/blogLogging.properties
+++ b/blog/blog-configuration/src/main/config/properties/org/silverpeas/util/logging/blogLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/blog/blog-configuration/src/main/config/xmlcomponents/blog.xml b/blog/blog-configuration/src/main/config/xmlcomponents/blog.xml
index f2afff1916..4b39d0c2ce 100644
--- a/blog/blog-configuration/src/main/config/xmlcomponents/blog.xml
+++ b/blog/blog-configuration/src/main/config/xmlcomponents/blog.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
@@ -119,9 +119,19 @@
       <type>checkbox</type>
       <updatable>always</updatable>
       <help>
-        <message lang="fr">Les billets créés au sein de cette instance pourront être classées sur le Plan de Classement</message>
-        <message lang="en">Post will be classified on the classification scheme.</message>
-        <message lang="de">Posts können auf dem KP klassifiziert werden</message>
+        <message lang="fr">Les billets créés au sein de cette instance pourront être classées sur le
+          Plan de Classement. Si un billet est classé lorsque le paramètre est désactivé, il n'est
+          pas déclassé. Il le sera lors de sa mise à jour.
+        </message>
+        <message lang="en">Posts created within this instance can be classified on the
+          Classification Plan. If a post is ranked when the parameter is deactivated, it is not
+          unclassified. It will be unclassified when it is updated.
+        </message>
+        <message lang="de">Beiträge, die in dieser Instanz erstellt werden, können nach dem
+          Klassifizierungsplan klassifiziert werden. Wenn ein Beitrag bei Deaktivierung des
+          Parameters eingestuft ist, ist er nicht unklassifiziert. Er wird unklassifiziert sein,
+          wenn er aktualisiert wird.
+        </message>
       </help>
     </parameter>
     <parameter>
diff --git a/blog/blog-library/pom.xml b/blog/blog-library/pom.xml
index 70e245cb61..a86a9bfeff 100644
--- a/blog/blog-library/pom.xml
+++ b/blog/blog-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>blog</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.blog</groupId>
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/BlogContentManager.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/BlogContentManager.java
index 619675fab9..07dd089436 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/BlogContentManager.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/BlogContentManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog;
 
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/BlogInstancePostConstruction.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/BlogInstancePostConstruction.java
index 1706ebed76..be93c832e5 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/BlogInstancePostConstruction.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/BlogInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog;
 
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/BlogStatistics.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/BlogStatistics.java
index a8e6c42250..e7aead0e04 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/BlogStatistics.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/BlogStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog;
 
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/dao/PostDAO.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/dao/PostDAO.java
index 11d11955e8..f53a3dffd3 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/dao/PostDAO.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/dao/PostDAO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.dao;
 
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/Archive.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/Archive.java
index 525c0e120b..198749ee8d 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/Archive.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/Archive.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.model;
 
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/BlogRuntimeException.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/BlogRuntimeException.java
index 6181c19905..39bf9216de 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/BlogRuntimeException.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/BlogRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.model;
 
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/Category.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/Category.java
index 737f835c26..8598a2dc67 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/Category.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/Category.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.model;
 
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/PostDetail.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/PostDetail.java
index 85ba040ba8..e4614bc97b 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/PostDetail.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/model/PostDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.blog.model;
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/AbstractBlogUserNotification.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/AbstractBlogUserNotification.java
index c17dc4c1bf..4d46abec23 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/AbstractBlogUserNotification.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/AbstractBlogUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.blog.notification;
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/BlogInstanceManualUserNotification.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/BlogInstanceManualUserNotification.java
index f600f3ffb0..3e59ca044a 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/BlogInstanceManualUserNotification.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/BlogInstanceManualUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.blog.notification;
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/BlogUserAlertNotification.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/BlogUserAlertNotification.java
index 88a4c2b95b..13aa4a2b27 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/BlogUserAlertNotification.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/BlogUserAlertNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.notification;
 
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/BlogUserSubscriptionNotification.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/BlogUserSubscriptionNotification.java
index 1dc33340cb..3408c3eba1 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/BlogUserSubscriptionNotification.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/notification/BlogUserSubscriptionNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.notification;
 
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/service/BlogService.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/service/BlogService.java
index a5cab25997..852cf20318 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/service/BlogService.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/service/BlogService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.service;
 
@@ -55,7 +55,7 @@ static BlogService get() {
 
   String createPost(final PostDetail post, PdcClassification classification);
 
-  void updatePost(final PostDetail post);
+  void updatePost(final PostDetail post, final PdcClassification classification);
 
   void deletePost(String postId, String instanceId);
 
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/service/BlogServiceFactory.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/service/BlogServiceFactory.java
index 50ad0002d0..47709ea952 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/service/BlogServiceFactory.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/service/BlogServiceFactory.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.service;
 
diff --git a/blog/blog-library/src/main/java/org/silverpeas/components/blog/service/DefaultBlogService.java b/blog/blog-library/src/main/java/org/silverpeas/components/blog/service/DefaultBlogService.java
index 558a28bb15..8579214ffb 100644
--- a/blog/blog-library/src/main/java/org/silverpeas/components/blog/service/DefaultBlogService.java
+++ b/blog/blog-library/src/main/java/org/silverpeas/components/blog/service/DefaultBlogService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.service;
 
@@ -192,11 +192,27 @@ public void sendSubscriptionsNotification(final NodePK fatherPK, final PostDetai
       final Comment comment, final String type, final String senderId) {
     UserNotificationHelper.buildAndSend(
         new BlogUserSubscriptionNotification(post, comment, type, senderId));
+    // send notification if PDC subscription
+    try {
+      final PublicationPK pubPK = post.getPublication().getPK();
+      int silverObjectId = getSilverObjectId(pubPK);
+      List<ClassifyPosition> positions = pdcManager.getPositions(silverObjectId, pubPK
+          .getInstanceId());
+      if (positions != null) {
+        for (ClassifyPosition position : positions) {
+          pdcSubscriptionManager.checkSubscriptions(position.getValues(), pubPK
+              .getInstanceId(), silverObjectId);
+        }
+      }
+    } catch (PdcException e) {
+      SilverLogger.getLogger(this)
+          .error("PdC subscriber notification failure", e);
+    }
   }
 
   @Transactional
   @Override
-  public void updatePost(PostDetail post) {
+  public void updatePost(PostDetail post, final PdcClassification classification) {
     try (Connection con = openConnection()) {
       PublicationPK pubPk = post.getPublication()
           .getPK();
@@ -221,6 +237,11 @@ public void updatePost(PostDetail post) {
       WysiwygController.updateFileAndAttachment(post.getContent(), pub.getInstanceId(),
           pubPk.getId(), pub.getUpdaterId(), pub.getLanguage(), false);
 
+      // classify the publication on the PdC if any
+      if (classification != null) {
+        classification.classifyContentOrClearClassificationIfEmpty(pub, false);
+      }
+
       // Send notification if subscription
       if (pub.isValid()) {
         sendSubscriptionsNotification(new NodePK("0", pub.getPK()
@@ -657,22 +678,6 @@ public void draftOutPost(PostDetail post) {
       sendSubscriptionsNotification(new NodePK("0", pub.getPK()
           .getSpaceId(), pub.getPK()
           .getInstanceId()), post, null, "create", pub.getUpdaterId());
-
-      // send notification if PDC subscription
-      try {
-        int silverObjectId = getSilverObjectId(pub.getPK());
-        List<ClassifyPosition> positions = pdcManager.getPositions(silverObjectId, pub.getPK()
-            .getInstanceId());
-        if (positions != null) {
-          for (ClassifyPosition position : positions) {
-            pdcSubscriptionManager.checkSubscriptions(position.getValues(), pub.getPK()
-                .getInstanceId(), silverObjectId);
-          }
-        }
-      } catch (PdcException e) {
-        SilverLogger.getLogger(this)
-            .error("PdC subscriber notification failure", e);
-      }
     }
   }
 
diff --git a/blog/blog-war/pom.xml b/blog/blog-war/pom.xml
index 046582ec39..704012b8d2 100644
--- a/blog/blog-war/pom.xml
+++ b/blog/blog-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>blog</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.blog</groupId>
diff --git a/blog/blog-war/src/main/java/org/silverpeas/components/blog/BlogIndexer.java b/blog/blog-war/src/main/java/org/silverpeas/components/blog/BlogIndexer.java
index 4ec79b52aa..bac202393c 100644
--- a/blog/blog-war/src/main/java/org/silverpeas/components/blog/BlogIndexer.java
+++ b/blog/blog-war/src/main/java/org/silverpeas/components/blog/BlogIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog;
 
diff --git a/blog/blog-war/src/main/java/org/silverpeas/components/blog/access/BlogPostWriteAccessControl.java b/blog/blog-war/src/main/java/org/silverpeas/components/blog/access/BlogPostWriteAccessControl.java
index d22e0a9cb9..5db93569c9 100644
--- a/blog/blog-war/src/main/java/org/silverpeas/components/blog/access/BlogPostWriteAccessControl.java
+++ b/blog/blog-war/src/main/java/org/silverpeas/components/blog/access/BlogPostWriteAccessControl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.blog.access;
diff --git a/blog/blog-war/src/main/java/org/silverpeas/components/blog/access/BlogPostWriteAccessController.java b/blog/blog-war/src/main/java/org/silverpeas/components/blog/access/BlogPostWriteAccessController.java
index c3b4761a61..6a352c42ea 100644
--- a/blog/blog-war/src/main/java/org/silverpeas/components/blog/access/BlogPostWriteAccessController.java
+++ b/blog/blog-war/src/main/java/org/silverpeas/components/blog/access/BlogPostWriteAccessController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.access;
 
diff --git a/blog/blog-war/src/main/java/org/silverpeas/components/blog/control/BlogSessionController.java b/blog/blog-war/src/main/java/org/silverpeas/components/blog/control/BlogSessionController.java
index 841375d193..86b126babd 100644
--- a/blog/blog-war/src/main/java/org/silverpeas/components/blog/control/BlogSessionController.java
+++ b/blog/blog-war/src/main/java/org/silverpeas/components/blog/control/BlogSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.control;
 
@@ -44,6 +44,7 @@
 import org.silverpeas.core.contribution.model.ContributionIdentifier;
 import org.silverpeas.core.contribution.publication.model.PublicationDetail;
 import org.silverpeas.core.contribution.publication.model.PublicationPK;
+import org.silverpeas.core.exception.DecodingException;
 import org.silverpeas.core.exception.EncodingException;
 import org.silverpeas.core.index.indexing.model.IndexManager;
 import org.silverpeas.core.mylinks.model.LinkDetail;
@@ -55,6 +56,7 @@
 import org.silverpeas.core.util.DateUtil;
 import org.silverpeas.core.util.JSONCodec;
 import org.silverpeas.core.util.ServiceProvider;
+import org.silverpeas.core.util.StringUtil;
 import org.silverpeas.core.util.UtilException;
 import org.silverpeas.core.util.file.FileFolderManager;
 import org.silverpeas.core.util.file.FileRepositoryManager;
@@ -80,7 +82,9 @@
 import java.util.Collection;
 import java.util.Date;
 import java.util.List;
+import java.util.Objects;
 
+import static java.util.Optional.of;
 import static org.silverpeas.core.pdc.pdc.model.PdcClassification.aPdcClassificationOfContent;
 
 public final class BlogSessionController extends AbstractComponentSessionController {
@@ -206,7 +210,7 @@ public PostDetail getPost(String postId) {
   }
 
   public synchronized String createPost(String title, String categoryId, Date dateEvent,
-      PdcClassificationEntity classification) {
+      String pdcJsonPositions) {
     checkWriteAccessOnBlogPost();
     PublicationDetail pub = PublicationDetail.builder()
         .setPk(new PublicationPK(ResourceReference.UNKNOWN_ID, getComponentId()))
@@ -222,18 +226,17 @@ public synchronized String createPost(String title, String categoryId, Date date
     PostDetail newPost = new PostDetail(pub, categoryId, dateEvent);
 
     // creating post
+    final PdcClassificationEntity classification = getClassificationFromJSON(pdcJsonPositions);
     if (classification.isUndefined()) {
       return getBlogService().createPost(newPost);
     } else {
-      List<PdcPosition> pdcPositions = classification.getPdcPositions();
-      PdcClassification withClassification =
-          aPdcClassificationOfContent(newPost).withPositions(pdcPositions);
+      PdcClassification withClassification = getPdcClassification(newPost, classification);
       return getBlogService().createPost(newPost, withClassification);
     }
   }
 
   public synchronized void updatePost(String postId, String title, String content,
-      String categoryId, Date dateEvent) {
+      String categoryId, Date dateEvent, String pdcJsonPositions) {
     checkWriteAccessOnBlogPost();
     PostDetail post = getPost(postId);
 
@@ -250,7 +253,9 @@ public synchronized void updatePost(String postId, String title, String content,
     post.setContent(content);
 
     // save the post
-    getBlogService().updatePost(post);
+    final PdcClassificationEntity classification = getClassificationFromJSON(pdcJsonPositions);
+    PdcClassification withClassification = getPdcClassification(post, classification);
+    getBlogService().updatePost(post, withClassification);
   }
 
   public synchronized void draftOutPost(String postId) {
@@ -261,9 +266,9 @@ public synchronized void draftOutPost(String postId) {
   }
 
   public synchronized void updatePostAndDraftOut(String postId, String title, String content,
-      String categoryId, Date dateEvent) {
+      String categoryId, Date dateEvent, String pdcJsonPositions) {
     //update post
-    updatePost(postId, title, content, categoryId, dateEvent);
+    updatePost(postId, title, content, categoryId, dateEvent, pdcJsonPositions);
 
     //draft out poste
     draftOutPost(postId);
@@ -280,6 +285,33 @@ public synchronized void deletePost(String postId) {
     }
   }
 
+  /**
+   * Gets {@link PdcClassificationEntity} from  positions as json string
+   * @param positions the string json positions.
+   */
+  private PdcClassificationEntity getClassificationFromJSON(String positions) {
+    return of(isPdcUsed())
+        .filter(Boolean.TRUE::equals)
+        .map(p -> positions)
+        .filter(StringUtil::isDefined)
+        .map(p -> {
+          try {
+            return PdcClassificationEntity.fromJSON(positions);
+          } catch (DecodingException e) {
+            SilverLogger.getLogger(this).error(e);
+          }
+          return null;
+        })
+        .filter(Objects::nonNull)
+        .orElseGet(PdcClassificationEntity::undefinedClassification);
+  }
+
+  private static PdcClassification getPdcClassification(final PostDetail newPost,
+      final PdcClassificationEntity classification) {
+    final List<PdcPosition> pdcPositions = classification.getPdcPositions();
+    return aPdcClassificationOfContent(newPost).withPositions(pdcPositions);
+  }
+
   public Collection<Comment> getAllComments(String postId) {
     ResourceReference ref = new ResourceReference(postId, getComponentId());
     return getCommentService().getAllCommentsOnResource(PostDetail.getResourceType(), ref);
diff --git a/blog/blog-war/src/main/java/org/silverpeas/components/blog/control/StyleSheet.java b/blog/blog-war/src/main/java/org/silverpeas/components/blog/control/StyleSheet.java
index e3f1c8c02f..91568f9a03 100644
--- a/blog/blog-war/src/main/java/org/silverpeas/components/blog/control/StyleSheet.java
+++ b/blog/blog-war/src/main/java/org/silverpeas/components/blog/control/StyleSheet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.control;
 
diff --git a/blog/blog-war/src/main/java/org/silverpeas/components/blog/control/WallPaper.java b/blog/blog-war/src/main/java/org/silverpeas/components/blog/control/WallPaper.java
index 3044cd9f9f..cd8f4ef447 100644
--- a/blog/blog-war/src/main/java/org/silverpeas/components/blog/control/WallPaper.java
+++ b/blog/blog-war/src/main/java/org/silverpeas/components/blog/control/WallPaper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.control;
 
diff --git a/blog/blog-war/src/main/java/org/silverpeas/components/blog/servlets/BlogRequestRouter.java b/blog/blog-war/src/main/java/org/silverpeas/components/blog/servlets/BlogRequestRouter.java
index bce1c495a6..eb2c7a8c24 100644
--- a/blog/blog-war/src/main/java/org/silverpeas/components/blog/servlets/BlogRequestRouter.java
+++ b/blog/blog-war/src/main/java/org/silverpeas/components/blog/servlets/BlogRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.servlets;
 
@@ -39,7 +39,6 @@
 import org.silverpeas.core.web.mvc.route.ComponentRequestRouter;
 import org.silverpeas.core.web.mvc.util.WysiwygRouting;
 import org.silverpeas.core.web.util.viewgenerator.html.monthcalendar.Event;
-import org.silverpeas.core.webapi.pdc.PdcClassificationEntity;
 
 import javax.servlet.http.HttpServletRequest;
 import java.util.ArrayList;
@@ -131,10 +130,10 @@ public String getDestination(String function, BlogSessionController blogSC, Http
       } else if ("NewPost".equals(function)) {
         //save a new post untitled, in draft mode
         String title = blogSC.getString("blog.postUntitled");
+        String positions = request.getParameter("Positions");
         String categoryId = "";
         Date dateEvent = new Date();
-        PdcClassificationEntity classification = PdcClassificationEntity.undefinedClassification();
-        String postId = blogSC.createPost(title, categoryId, dateEvent, classification);
+        String postId = blogSC.createPost(title, categoryId, dateEvent, positions);
 
         PostDetail post = blogSC.getPost(postId);
         request.setAttribute("Post", post);
@@ -159,6 +158,7 @@ public String getDestination(String function, BlogSessionController blogSC, Http
         String content = request.getParameter("editor");
         String categoryId = request.getParameter("CategoryId");
         String date = request.getParameter("DateEvent");
+        String positions = request.getParameter("Positions");
         Date dateEvent;
         if (StringUtil.isDefined(date)) {
           dateEvent = DateUtil.stringToDate(date, blogSC.getLanguage());
@@ -168,10 +168,10 @@ public String getDestination(String function, BlogSessionController blogSC, Http
 
         if ("UpdatePost".equals(function)) {
           // save post
-          blogSC.updatePost(postId, title, content, categoryId, dateEvent);
+          blogSC.updatePost(postId, title, content, categoryId, dateEvent, positions);
         } else if ("UpdatePostAndDraftOut".equals(function)) {
           // save and draft out the post
-          blogSC.updatePostAndDraftOut(postId, title, content, categoryId, dateEvent);
+          blogSC.updatePostAndDraftOut(postId, title, content, categoryId, dateEvent, positions);
         }
         request.setAttribute("PostId", postId);
         destination = getDestination("ViewPost", blogSC, request);
diff --git a/blog/blog-war/src/main/java/org/silverpeas/components/blog/servlets/BlogRssServlet.java b/blog/blog-war/src/main/java/org/silverpeas/components/blog/servlets/BlogRssServlet.java
index f31e7007d0..1379796a74 100644
--- a/blog/blog-war/src/main/java/org/silverpeas/components/blog/servlets/BlogRssServlet.java
+++ b/blog/blog-war/src/main/java/org/silverpeas/components/blog/servlets/BlogRssServlet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.servlets;
 
diff --git a/blog/blog-war/src/main/java/org/silverpeas/components/blog/servlets/GoToPost.java b/blog/blog-war/src/main/java/org/silverpeas/components/blog/servlets/GoToPost.java
index 8d366fb765..dcf46b1e22 100644
--- a/blog/blog-war/src/main/java/org/silverpeas/components/blog/servlets/GoToPost.java
+++ b/blog/blog-war/src/main/java/org/silverpeas/components/blog/servlets/GoToPost.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.blog.servlets;
 
diff --git a/blog/blog-war/src/main/webapp/WEB-INF/web.xml b/blog/blog-war/src/main/webapp/WEB-INF/web.xml
index d892f45713..fb3afee7a2 100644
--- a/blog/blog-war/src/main/webapp/WEB-INF/web.xml
+++ b/blog/blog-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/blog/blog-war/src/main/webapp/blog/jsp/accueil.jsp b/blog/blog-war/src/main/webapp/blog/jsp/accueil.jsp
index d804a8a459..fc01e9b691 100644
--- a/blog/blog-war/src/main/webapp/blog/jsp/accueil.jsp
+++ b/blog/blog-war/src/main/webapp/blog/jsp/accueil.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/blog/blog-war/src/main/webapp/blog/jsp/check.jsp b/blog/blog-war/src/main/webapp/blog/jsp/check.jsp
index 01c8a0cff3..a296c323f1 100644
--- a/blog/blog-war/src/main/webapp/blog/jsp/check.jsp
+++ b/blog/blog-war/src/main/webapp/blog/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/blog/blog-war/src/main/webapp/blog/jsp/portlet.jsp b/blog/blog-war/src/main/webapp/blog/jsp/portlet.jsp
index 27e92cb248..32bc076fd1 100644
--- a/blog/blog-war/src/main/webapp/blog/jsp/portlet.jsp
+++ b/blog/blog-war/src/main/webapp/blog/jsp/portlet.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/blog/blog-war/src/main/webapp/blog/jsp/postManager.jsp b/blog/blog-war/src/main/webapp/blog/jsp/postManager.jsp
index 9db7453863..da67096dbb 100644
--- a/blog/blog-war/src/main/webapp/blog/jsp/postManager.jsp
+++ b/blog/blog-war/src/main/webapp/blog/jsp/postManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
@@ -228,7 +228,7 @@
   </div>
 </fieldset>
 
-<view:pdcClassification componentId="<%=instanceId%>" contentId="<%=post.getId() %>" editable="true" />
+<view:pdcClassification componentId="<%=instanceId%>" contentId="<%=post.getId() %>" editable="true" externalManagement="true" />
 
 <div class="legend">
 	<img alt="mandatory" border="0" src="${pageContext.request.contextPath}<fmt:message key="blog.obligatoire" bundle="${icons}"/>" width="5" height="5"/> : <fmt:message key="GML.requiredField" />
diff --git a/blog/blog-war/src/main/webapp/blog/jsp/viewCategory.jsp b/blog/blog-war/src/main/webapp/blog/jsp/viewCategory.jsp
index c31d86bb5a..01368a4af3 100644
--- a/blog/blog-war/src/main/webapp/blog/jsp/viewCategory.jsp
+++ b/blog/blog-war/src/main/webapp/blog/jsp/viewCategory.jsp
@@ -2,7 +2,7 @@
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.icons.Icon" %>
 <%@ page import="org.silverpeas.core.util.WebEncodeHelper" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -14,7 +14,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -22,7 +22,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/blog/blog-war/src/main/webapp/blog/jsp/viewPost.jsp b/blog/blog-war/src/main/webapp/blog/jsp/viewPost.jsp
index 2ca98fcad8..e2fbd13601 100644
--- a/blog/blog-war/src/main/webapp/blog/jsp/viewPost.jsp
+++ b/blog/blog-war/src/main/webapp/blog/jsp/viewPost.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/blog/pom.xml b/blog/pom.xml
index 413f46a828..993e941316 100644
--- a/blog/pom.xml
+++ b/blog/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
   
   <groupId>org.silverpeas.components</groupId>
diff --git a/classifieds/classifieds-configuration/pom.xml b/classifieds/classifieds-configuration/pom.xml
index d3f5224a94..9347f664f4 100644
--- a/classifieds/classifieds-configuration/pom.xml
+++ b/classifieds/classifieds-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>classifieds</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.classifieds</groupId>
diff --git a/classifieds/classifieds-configuration/src/main/config/migrations/modules/classifieds-migration.xml b/classifieds/classifieds-configuration/src/main/config/migrations/modules/classifieds-migration.xml
index aa9345a160..67967691d7 100644
--- a/classifieds/classifieds-configuration/src/main/config/migrations/modules/classifieds-migration.xml
+++ b/classifieds/classifieds-configuration/src/main/config/migrations/modules/classifieds-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify it under the terms of the
   ~ GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -10,14 +10,14 @@
   ~ redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
   ~ applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
   ~ text describing the FLOSS exception, and it is also available here:
-  ~ "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  ~ "https://www.silverpeas.org/legal/floss_exception.html"
   ~
   ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
   ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   ~ Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License along with this program.
-  ~ If not, see <http://www.gnu.org/licenses/>.
+  ~ If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <migration module="classifieds"
diff --git a/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle.properties b/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle.properties
index 34c336952a..7cc48ff7f4 100644
--- a/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle.properties
+++ b/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 classifieds.myClassifieds = Mes annonces
 classifieds.addClassified = Ajouter une annonce
diff --git a/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle_de.properties b/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle_de.properties
index 98bfced64d..25b017e397 100644
--- a/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle_de.properties
+++ b/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 classifieds.redirect.next=Sie wurden auf die n\u00e4chste gerichtet.
 classifieds.myClassifieds = Meine Kleinanzeigen
diff --git a/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle_en.properties b/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle_en.properties
index fb13ce42eb..2e31468365 100644
--- a/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle_en.properties
+++ b/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 classifieds.myClassifieds = My classifieds
 classifieds.addClassified = Add a classified
diff --git a/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle_fr.properties b/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle_fr.properties
index b071f13e5e..feb5e7643d 100644
--- a/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle_fr.properties
+++ b/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/multilang/classifiedsBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 classifieds.myClassifieds = Mes annonces
 classifieds.addClassified = Ajouter une annonce
diff --git a/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/settings/classifiedsIcons.properties b/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/settings/classifiedsIcons.properties
index cebf554b50..152129711f 100644
--- a/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/settings/classifiedsIcons.properties
+++ b/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/settings/classifiedsIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 classifieds.logo = /classifieds/jsp/icons/logo.gif
 
diff --git a/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/settings/classifiedsSettings.properties b/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/settings/classifiedsSettings.properties
index 4066df924e..1adfaad638 100644
--- a/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/settings/classifiedsSettings.properties
+++ b/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/classifieds/settings/classifiedsSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 # date et heure de la suppression automatique des petites annonces arrivant � terme
diff --git a/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/util/logging/classifiedsLogging.properties b/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/util/logging/classifiedsLogging.properties
index 8f55e57a4f..776f7e6e75 100644
--- a/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/util/logging/classifiedsLogging.properties
+++ b/classifieds/classifieds-configuration/src/main/config/properties/org/silverpeas/util/logging/classifiedsLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/classifieds/classifieds-configuration/src/main/config/xmlcomponents/classifieds.xml b/classifieds/classifieds-configuration/src/main/config/xmlcomponents/classifieds.xml
index cd6ab21ede..6580ad953a 100644
--- a/classifieds/classifieds-configuration/src/main/config/xmlcomponents/classifieds.xml
+++ b/classifieds/classifieds-configuration/src/main/config/xmlcomponents/classifieds.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <WAComponent xmlns="http://silverpeas.org/xml/ns/component" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
diff --git a/classifieds/classifieds-library/pom.xml b/classifieds/classifieds-library/pom.xml
index ebed5f0e6c..f4745a3488 100644
--- a/classifieds/classifieds-library/pom.xml
+++ b/classifieds/classifieds-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>classifieds</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.classifieds</groupId>
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedUtil.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedUtil.java
index 2861d37fd8..3746d5f3b9 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedUtil.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedUtil.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedsComponentSettings.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedsComponentSettings.java
index 9bb42bb982..dde60188fe 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedsComponentSettings.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedsComponentSettings.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds;
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedsInstancePreDestruction.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedsInstancePreDestruction.java
index 8febc43dfd..3e66074c83 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedsInstancePreDestruction.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedsInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedsStatistics.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedsStatistics.java
index f22744ce7a..5c44d11d0a 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedsStatistics.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/ClassifiedsStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/dao/ClassifiedsDAO.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/dao/ClassifiedsDAO.java
index 50e3163944..3668ab4feb 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/dao/ClassifiedsDAO.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/dao/ClassifiedsDAO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.dao;
 
@@ -453,13 +453,15 @@ public static Collection<String> getUsersBySubscribe(Connection con, String fiel
       throws SQLException {
     // récupérer tous les utilisateurs abonnés à une recherche
     ArrayList<String> listUsers = new ArrayList<>();
-    String query = "select userId from SC_Classifieds_Subscribes where field1 = ? and field2 = ? ";
+    String query = "select userId from SC_Classifieds_Subscribes where (field1 = ? and field2 = ?) or (field1 = ? and field2='') or (field1='' and field2 = ?)";
     PreparedStatement prepStmt = null;
     ResultSet rs = null;
     try {
       prepStmt = con.prepareStatement(query);
       prepStmt.setString(1, field1);
       prepStmt.setString(2, field2);
+      prepStmt.setString(3, field1);
+      prepStmt.setString(4, field2);
       rs = prepStmt.executeQuery();
       while (rs.next()) {
         String userId = rs.getString("userId");
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/Category.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/Category.java
index 2dbddc6513..a54060d050 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/Category.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/Category.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.model;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/ClassifiedDetail.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/ClassifiedDetail.java
index 79ed82450d..c25ed6a494 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/ClassifiedDetail.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/ClassifiedDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.model;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/ClassifiedsRuntimeException.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/ClassifiedsRuntimeException.java
index ceda386504..8e86fcdb46 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/ClassifiedsRuntimeException.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/ClassifiedsRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.model;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/Subscribe.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/Subscribe.java
index 608bd6c1db..3a77818fa6 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/Subscribe.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/model/Subscribe.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.model;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/AbstractClassifiedUserNotification.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/AbstractClassifiedUserNotification.java
index ded0e1bc0d..7b46ec8789 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/AbstractClassifiedUserNotification.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/AbstractClassifiedUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.notification;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedOwnerNotification.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedOwnerNotification.java
index d92928c6c6..f138c6af0c 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedOwnerNotification.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedOwnerNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.notification;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedSimpleNotification.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedSimpleNotification.java
index 4a6fa1dc61..019e2b61ab 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedSimpleNotification.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedSimpleNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.notification;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedSubscriptionUserNotification.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedSubscriptionUserNotification.java
index 6e92f14c15..820d6118e8 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedSubscriptionUserNotification.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedSubscriptionUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.notification;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedSupervisorUserNotification.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedSupervisorUserNotification.java
index 20965e51e7..1ac40cae38 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedSupervisorUserNotification.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedSupervisorUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.notification;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedValidationUserNotification.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedValidationUserNotification.java
index 404f006373..6e4b3200e4 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedValidationUserNotification.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedValidationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.notification;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/ClassifiedService.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/ClassifiedService.java
index e11749d9cc..a58b096a42 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/ClassifiedService.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/ClassifiedService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.service;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/ClassifiedServiceProvider.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/ClassifiedServiceProvider.java
index ade786659c..04d636d11e 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/ClassifiedServiceProvider.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/ClassifiedServiceProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.service;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/DefaultClassifiedService.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/DefaultClassifiedService.java
index 2b05cd2732..ce7db4ad9e 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/DefaultClassifiedService.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/DefaultClassifiedService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.service;
 
diff --git a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/ScheduledUnpublishExpiredClassifieds.java b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/ScheduledUnpublishExpiredClassifieds.java
index 2743192b90..584313a022 100644
--- a/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/ScheduledUnpublishExpiredClassifieds.java
+++ b/classifieds/classifieds-library/src/main/java/org/silverpeas/components/classifieds/service/ScheduledUnpublishExpiredClassifieds.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.service;
 
diff --git a/classifieds/classifieds-war/pom.xml b/classifieds/classifieds-war/pom.xml
index 5b75798db8..115dab5224 100644
--- a/classifieds/classifieds-war/pom.xml
+++ b/classifieds/classifieds-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>classifieds</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.classifieds</groupId>
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/ClassifiedsIndexer.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/ClassifiedsIndexer.java
index 094239f0e8..12692e558c 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/ClassifiedsIndexer.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/ClassifiedsIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds;
 
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/control/ClassifiedsRole.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/control/ClassifiedsRole.java
index 27c613a7cc..8c09b342a5 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/control/ClassifiedsRole.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/control/ClassifiedsRole.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.control;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/control/ClassifiedsSessionController.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/control/ClassifiedsSessionController.java
index 78809dafb7..4aba075874 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/control/ClassifiedsSessionController.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/control/ClassifiedsSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.control;
 
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/control/SearchContext.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/control/SearchContext.java
index 0d447a0953..0eb05ee68a 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/control/SearchContext.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/control/SearchContext.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.control;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedsInstanceManualUserNotification.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedsInstanceManualUserNotification.java
index c7fc965384..faf175f266 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedsInstanceManualUserNotification.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/notification/ClassifiedsInstanceManualUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.notification;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/ClassifiedsRequestRouter.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/ClassifiedsRequestRouter.java
index 1fe86e0258..d273bb6d71 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/ClassifiedsRequestRouter.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/ClassifiedsRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.servlets;
 
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/FunctionHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/FunctionHandler.java
index febbba3b02..16e1f4e492 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/FunctionHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/FunctionHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedCreationFormHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedCreationFormHandler.java
index da8cca7779..5914ef2fdb 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedCreationFormHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedCreationFormHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedCreationHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedCreationHandler.java
index e8f5fe6591..ad05edaa2d 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedCreationHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedCreationHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedDeleteHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedDeleteHandler.java
index 21ede6a8ae..f4e31a18f2 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedDeleteHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedDeleteHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedOwnerNotificationHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedOwnerNotificationHandler.java
index 170bc4f267..bf4338c04f 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedOwnerNotificationHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedOwnerNotificationHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedRefuseHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedRefuseHandler.java
index 5e654a83e8..5917ed2d57 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedRefuseHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedRefuseHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedUpdateFormHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedUpdateFormHandler.java
index a7259d5666..70711df1ef 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedUpdateFormHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedUpdateFormHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedUpdateHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedUpdateHandler.java
index 2a9224d449..572e18601f 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedUpdateHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedUpdateHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedValidateHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedValidateHandler.java
index 8ed2972ac2..6fd1aa65cf 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedValidateHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ClassifiedValidateHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/DefaultHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/DefaultHandler.java
index 266fa8abbb..af2ed897fe 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/DefaultHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/DefaultHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/DraftInHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/DraftInHandler.java
index 1eb3b11d1a..416c72f757 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/DraftInHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/DraftInHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/DraftOutHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/DraftOutHandler.java
index a1a00bbb41..4a1b7ab534 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/DraftOutHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/DraftOutHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/HandlerProvider.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/HandlerProvider.java
index ff72883b31..7f38830c08 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/HandlerProvider.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/HandlerProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ListToValidateHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ListToValidateHandler.java
index 9d9f74fa47..88f506fe5b 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ListToValidateHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ListToValidateHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/MyClassifiedsHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/MyClassifiedsHandler.java
index d4c3a98060..604e25d3ad 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/MyClassifiedsHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/MyClassifiedsHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/NextHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/NextHandler.java
index 8aa8bf419a..f70fb89e91 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/NextHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/NextHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/PaginationHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/PaginationHandler.java
index 343dcc234e..07f39a6296 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/PaginationHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/PaginationHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,11 +19,11 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -35,7 +35,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -43,7 +43,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.classifieds.servlets.handler;
 
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/PreviousHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/PreviousHandler.java
index cba801e267..13f002f07e 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/PreviousHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/PreviousHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SearchHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SearchHandler.java
index 0a299c91e0..e0e7386b30 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SearchHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SearchHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SearchResultsHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SearchResultsHandler.java
index ff498867ba..3275a4b7aa 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SearchResultsHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SearchResultsHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionCreateFormHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionCreateFormHandler.java
index 9717c4aa9a..16c075799f 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionCreateFormHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionCreateFormHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionCreateHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionCreateHandler.java
index c39d680ca0..4757684c37 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionCreateHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionCreateHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
@@ -46,7 +46,7 @@ public String getDestination(ClassifiedsSessionController classifiedsSC, HttpReq
       String field2 = request.getParameter(classifiedsSC.getSearchFields2());
 
       // subscribes user
-      if (StringUtil.isDefined(field1) && StringUtil.isDefined(field2)) {
+      if (StringUtil.isDefined(field1) || StringUtil.isDefined(field2)) {
         Subscribe subscribe = new Subscribe(field1, field2);
         classifiedsSC.createSubscribe(subscribe);
       }
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionDeleteHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionDeleteHandler.java
index df5a8439f9..0ba2998ffa 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionDeleteHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionDeleteHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionListHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionListHandler.java
index e336c183be..e8091d4485 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionListHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/SubscriptionListHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
@@ -28,12 +28,14 @@
 import org.silverpeas.components.classifieds.model.Subscribe;
 import org.silverpeas.components.classifieds.servlets.FunctionHandler;
 import org.silverpeas.core.contribution.content.form.DataRecord;
+import org.silverpeas.core.contribution.content.form.FieldTemplate;
 import org.silverpeas.core.contribution.content.form.Form;
 import org.silverpeas.core.contribution.content.form.RecordSet;
 import org.silverpeas.core.contribution.template.publication.PublicationTemplate;
 import org.silverpeas.core.web.http.HttpRequest;
 
 import java.util.Collection;
+import java.util.HashMap;
 
 /**
  * Use Case : for all users, show all adds of given category
@@ -47,6 +49,7 @@ public String getDestination(ClassifiedsSessionController classifiedsSC, HttpReq
 
     // Retrieves user subscriptions
     Collection<Subscribe> subscribes = classifiedsSC.getSubscribesByUser();
+    HashMap<String,String> fieldsLabel = new HashMap<>();
 
     // Get form template and data
     Form formUpdate = null;
@@ -56,12 +59,17 @@ public String getDestination(ClassifiedsSessionController classifiedsSC, HttpReq
       formUpdate = pubTemplate.getSearchForm();
       RecordSet recordSet = pubTemplate.getRecordSet();
       data = recordSet.getEmptyRecord();
+      //Store search fields label
+      for (FieldTemplate fieldTemplate : formUpdate.getFieldTemplates()) {
+        fieldsLabel.put(fieldTemplate.getFieldName(),fieldTemplate.getLabel(request.getUserLanguage()));
+      }
     }
 
     // Stores objects in request
     request.setAttribute("Subscribes", subscribes);
     request.setAttribute("Form", formUpdate);
     request.setAttribute("Data", data);
+    request.setAttribute("FieldsLabel", fieldsLabel);
 
     // Returns jsp to redirect to
     return "subscriptions.jsp";
diff --git a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ViewClassifiedHandler.java b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ViewClassifiedHandler.java
index 453e7cb85c..812ed0bfb1 100644
--- a/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ViewClassifiedHandler.java
+++ b/classifieds/classifieds-war/src/main/java/org/silverpeas/components/classifieds/servlets/handler/ViewClassifiedHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.classifieds.servlets.handler;
diff --git a/classifieds/classifieds-war/src/main/webapp/WEB-INF/tags/silverpeas/classifieds/listOfClassifieds.tag b/classifieds/classifieds-war/src/main/webapp/WEB-INF/tags/silverpeas/classifieds/listOfClassifieds.tag
index 62a9f85863..b64f3b6b50 100644
--- a/classifieds/classifieds-war/src/main/webapp/WEB-INF/tags/silverpeas/classifieds/listOfClassifieds.tag
+++ b/classifieds/classifieds-war/src/main/webapp/WEB-INF/tags/silverpeas/classifieds/listOfClassifieds.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
   
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
   
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/classifieds/classifieds-war/src/main/webapp/WEB-INF/web.xml b/classifieds/classifieds-war/src/main/webapp/WEB-INF/web.xml
index 6cdccb5167..93bb62673d 100644
--- a/classifieds/classifieds-war/src/main/webapp/WEB-INF/web.xml
+++ b/classifieds/classifieds-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/accueil.jsp b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/accueil.jsp
index 8428df67b1..427b4abbe7 100644
--- a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/accueil.jsp
+++ b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/accueil.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.contribution.content.form.Form"%>
@@ -118,6 +118,8 @@ function viewClassifieds(fieldNumber, fieldValue) {
                     DataRecord data = (DataRecord) pageContext.getAttribute("data");
 
                     PagesContext context = new PagesContext("myForm", "0", language, false, instanceId, null, null);
+                    context.setIgnoreDefaultValues(true);
+                    context.setCreation(false);
                     context.setBorderPrinted(false);
                     formSearch.display(out, context, data);
                   %>
diff --git a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/accueilNotCategorized.jsp b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/accueilNotCategorized.jsp
index c606e4b643..d00be88027 100644
--- a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/accueilNotCategorized.jsp
+++ b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/accueilNotCategorized.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.contribution.content.form.Form"%>
diff --git a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/classifiedManager.jsp b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/classifiedManager.jsp
index e8fa3064db..daadeb4786 100644
--- a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/classifiedManager.jsp
+++ b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/classifiedManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -82,9 +82,11 @@
   ClassifiedDetail classify = (ClassifiedDetail) pageContext.getAttribute("classified");
 
   PagesContext context = new PagesContext("classifiedForm", "11", language, false, instanceId, null, null);
-  context.setIgnoreDefaultValues(true);
+  context.setIgnoreDefaultValues(false);
   context.setBorderPrinted(false);
+  context.setCreation(true);
   if (classify != null) {
+    context.setCreation(false);
     context.setObjectId(classify.getId());
   }
 %>
@@ -211,13 +213,6 @@
        }
   }
 
-  function setData()
-  {
-    <c:if test="${not empty fieldName}">
-        document.classifiedForm.${fieldName}.value = '${fieldKey}';
-      </c:if>
-  }
-  
   function hideImageFile(idElement) {
     document.getElementById("imageFile"+idElement).style.visibility = "hidden";
     document.classifiedForm["RemoveImageFile"+idElement].value = "yes";
@@ -226,7 +221,7 @@
 </script>
 
 </view:sp-head-part>
-<view:sp-body-part onLoad="setData()">
+<view:sp-body-part>
   <fmt:message var="classifiedPath"
     key="${ (action eq 'CreateClassified') ? 'classifieds.addClassified' : 'classifieds.updateClassified'}" />
   <view:browseBar>
diff --git a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/classifieds.jsp b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/classifieds.jsp
index e66cf0eab9..2d985f1d13 100644
--- a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/classifieds.jsp
+++ b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/classifieds.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/classifiedsResult.jsp b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/classifiedsResult.jsp
index 05acc0bd63..40f8fd2adf 100644
--- a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/classifiedsResult.jsp
+++ b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/classifiedsResult.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.components.classifieds.control.SearchContext"%>
diff --git a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/styleSheets/classifieds.css b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/styleSheets/classifieds.css
index 446b04975d..6d826b51fa 100644
--- a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/styleSheets/classifieds.css
+++ b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/styleSheets/classifieds.css
@@ -1,5 +1,5 @@
 /**
-* Copyright (C) 2000 - 2022 Silverpeas
+* Copyright (C) 2000 - 2024 Silverpeas
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 * Open Source Software ("FLOSS") applications as described in Silverpeas's
 * FLOSS exception. You should have received a copy of the text describing
 * the FLOSS exception, and it is also available here:
-* "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+* "https://www.silverpeas.org/legal/floss_exception.html"
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
-* along with this program. If not, see <http://www.gnu.org/licenses/>.
+* along with this program. If not, see <https://www.gnu.org/licenses/>.
 */
 
 #classifieds #search .forms.mode-search .fields {
diff --git a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/subscriptionManager.jsp b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/subscriptionManager.jsp
index bf2b0a7875..7a78da65d9 100644
--- a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/subscriptionManager.jsp
+++ b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/subscriptionManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -58,7 +58,7 @@
             title: "${dialogTitle}",
 			autoOpen: false,
 			height: 'auto',
-			width: 400,
+			width: 500,
 			modal: true,
 			buttons: {
 				'${validateLabel}': function() {
@@ -81,7 +81,7 @@
 	<br/>
 	<form name="SubscriptionForm" action="AddSubscription" method="post" enctype="multipart/form-data">
 	<c:if test="${not empty formSearch}">
-		<table border="0" width="100%" align="center">
+		<table>
 			<caption></caption>
 			<th id="subscriptionFormHeader"></th>
 			<!-- AFFICHAGE du formulaire -->
diff --git a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/subscriptions.jsp b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/subscriptions.jsp
index ab5b1286a3..71679a9cf1 100644
--- a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/subscriptions.jsp
+++ b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/subscriptions.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -46,63 +46,71 @@
 <c:set var="componentLabel" value="${browseContext[1]}" />
 
 <c:set var="subscribes" value="${requestScope.Subscribes}" />
+<c:set var="fieldsLabel" value="${requestScope.FieldsLabel}" />
+<c:set var="data" value="${requestScope.Data}" />
 
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
-   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="${language}">
 <head>
-	<title></title>
-<view:looknfeel withCheckFormScript="true"/>
+  <title></title>
+  <view:looknfeel withCheckFormScript="true"/>
 </head>
 <body>
-	<fmt:message var="classifiedPath" key="classifieds.mySubscriptions" />
-	<view:browseBar>
-		<view:browseBarElt label="${classifiedPath}" link="#" />
-	</view:browseBar>
-
-	<view:operationPane>
-		<fmt:message var="iconAddSubscription" key="classifieds.subscriptionsAdd" bundle="${icons}" />
-		<c:url var="iconAddSubscriptionUrl" value="${iconAddSubscription}"/>
-		<fmt:message var="addSubscriptionLabel"	key="classifieds.addSubscription" />
-		<view:operation icon="${iconAddSubscriptionUrl}" action="javaScript:addSubscription()" 	altText="${addSubscriptionLabel}" />
-	</view:operationPane>
-
-	<view:window>
-		<view:frame>
-			<br />
-			<view:board>
-
-				<jsp:include page="subscriptionManager.jsp" />
-
-				<table>
-					<caption></caption>
-					<th id="subedition"></th>
-					<c:if test="${not empty subscribes}">
-						<c:forEach items="${subscribes}" var="subscribe">
-							<tr>
-								<td>
-									<p>
-										&nbsp; &#149; &nbsp;&nbsp;<strong>${subscribe.fieldName1} - ${subscribe.fieldName2}</strong>
-										<a href="DeleteSubscription?SubscribeId=${subscribe.subscribeId}">
-											<fmt:message var="iconDelete" key="classifieds.smallDelete" bundle="${icons}" />
-											<c:url var="iconDeleteUrl" value="${iconDelete}"/>
-											<fmt:message var="deleteLabel" key="GML.delete" />
-											<img src="${iconDeleteUrl}" border="0" alt="${deleteLabel}" title="${deleteLabel}" align="absmiddle" />
-										</a>
-									</p>
-								</td>
-							</tr>
-						</c:forEach>
-					</c:if>
-					<c:if test="${empty subscribes}">
-						<tr>
-							<td colspan="5" valign="middle" align="center" width="100%">
-								<br /> <fmt:message key="classifieds.SubscribeEmpty" /> <br /></td>
-						</tr>
-					</c:if>
-				</table>
-			</view:board>
-		</view:frame>
-	</view:window>
+<fmt:message var="classifiedPath" key="classifieds.mySubscriptions" />
+<view:browseBar>
+  <view:browseBarElt label="${classifiedPath}" link="#" />
+</view:browseBar>
+
+<view:operationPane>
+  <fmt:message var="iconAddSubscription" key="classifieds.subscriptionsAdd" bundle="${icons}" />
+  <c:url var="iconAddSubscriptionUrl" value="${iconAddSubscription}"/>
+  <fmt:message var="addSubscriptionLabel"	key="classifieds.addSubscription" />
+  <view:operation icon="${iconAddSubscriptionUrl}" action="javaScript:addSubscription()" 	altText="${addSubscriptionLabel}" />
+</view:operationPane>
+
+<view:window>
+  <view:frame>
+    <br />
+    <view:board>
+
+      <jsp:include page="subscriptionManager.jsp" />
+
+      <table>
+        <caption></caption>
+        <th id="subedition"></th>
+        <c:if test="${not empty subscribes}">
+          <c:forEach items="${subscribes}" var="subscribe">
+            <tr>
+              <td>
+                <p>
+                  &nbsp; &#149; &nbsp;
+                  <c:if test="${not empty subscribe.fieldName1}">
+                    ${fieldsLabel[data.fields[0].name]}:&nbsp;<strong>${subscribe.fieldName1}</strong>&nbsp;
+                  </c:if>
+                  <c:if test="${not empty subscribe.fieldName2}">
+                    ${fieldsLabel[data.fields[1].name]}:&nbsp;<strong>${subscribe.fieldName2}</strong>
+                  </c:if>
+                  <a href="DeleteSubscription?SubscribeId=${subscribe.subscribeId}">
+                    <fmt:message var="iconDelete" key="classifieds.smallDelete" bundle="${icons}" />
+                    <c:url var="iconDeleteUrl" value="${iconDelete}"/>
+                    <fmt:message var="deleteLabel" key="GML.delete" />
+                    <img src="${iconDeleteUrl}" border="0" alt="${deleteLabel}" title="${deleteLabel}" align="absmiddle" />
+                  </a>
+                </p>
+              </td>
+            </tr>
+          </c:forEach>
+        </c:if>
+        <c:if test="${empty subscribes}">
+          <tr>
+            <td colspan="5" valign="middle" align="center" width="100%">
+              <br /> <fmt:message key="classifieds.SubscribeEmpty" /> <br /></td>
+          </tr>
+        </c:if>
+      </table>
+    </view:board>
+  </view:frame>
+</view:window>
 </body>
 </html>
diff --git a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/viewClassified.jsp b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/viewClassified.jsp
index 2d5332b76c..041207db97 100644
--- a/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/viewClassified.jsp
+++ b/classifieds/classifieds-war/src/main/webapp/classifieds/jsp/viewClassified.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
diff --git a/classifieds/pom.xml b/classifieds/pom.xml
index 6f6c02e206..dfb7208480 100644
--- a/classifieds/pom.xml
+++ b/classifieds/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
   
   <groupId>org.silverpeas.components</groupId>
diff --git a/dataWarning/dataWarning-configuration/pom.xml b/dataWarning/dataWarning-configuration/pom.xml
index 3495d8ff55..e88c9733b7 100644
--- a/dataWarning/dataWarning-configuration/pom.xml
+++ b/dataWarning/dataWarning-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>datawarning</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.datawarning</groupId>
diff --git a/dataWarning/dataWarning-configuration/src/main/config/migrations/modules/dataWarning-migration.xml b/dataWarning/dataWarning-configuration/src/main/config/migrations/modules/dataWarning-migration.xml
index 1fa8973efc..52dcdbfbd9 100644
--- a/dataWarning/dataWarning-configuration/src/main/config/migrations/modules/dataWarning-migration.xml
+++ b/dataWarning/dataWarning-configuration/src/main/config/migrations/modules/dataWarning-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   -->
 <migration module="dataWarning"
            xmlns="http://silverpeas.org/xml/ns/migration"
diff --git a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning.properties b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning.properties
index 1fa964a4d2..d4ae91705c 100644
--- a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning.properties
+++ b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 erreurParametresConnectionIncorrects = param\u00e8tres de connexion incorrects
diff --git a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning_de.properties b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning_de.properties
index 1fa964a4d2..d4ae91705c 100644
--- a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning_de.properties
+++ b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 erreurParametresConnectionIncorrects = param\u00e8tres de connexion incorrects
diff --git a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning_en.properties b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning_en.properties
index 0e023d9f7a..a1a3dcca01 100644
--- a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning_en.properties
+++ b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 parametresConnectionIncorrects = wrong connexion parameters
diff --git a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning_fr.properties b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning_fr.properties
index cff385a888..9676b0540e 100644
--- a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning_fr.properties
+++ b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/multilang/dataWarning_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 erreurParametresConnectionIncorrects = param\u00e8tres de connexion incorrects
diff --git a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/settings/dataWarningIcons.properties b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/settings/dataWarningIcons.properties
index f5274efb5c..9c3c99130c 100644
--- a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/settings/dataWarningIcons.properties
+++ b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/settings/dataWarningIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 DataWarning.logo = /DataWarning/jsp/icons/logo.gif
diff --git a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/settings/dataWarningSettings.properties b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/settings/dataWarningSettings.properties
index ddaeaec3a8..326d4c93f7 100644
--- a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/settings/dataWarningSettings.properties
+++ b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/settings/dataWarningSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 #Specify if the key ST_PASSWORD must be processed or not
diff --git a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/settings/dataWarningSettings.xml b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/settings/dataWarningSettings.xml
index 9ef6ec29d5..738f536156 100644
--- a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/settings/dataWarningSettings.xml
+++ b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/dataWarning/settings/dataWarningSettings.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/util/logging/dataWarningLogging.properties b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/util/logging/dataWarningLogging.properties
index 2a6229e5be..ebc8e09741 100644
--- a/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/util/logging/dataWarningLogging.properties
+++ b/dataWarning/dataWarning-configuration/src/main/config/properties/org/silverpeas/util/logging/dataWarningLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/dataWarning/dataWarning-configuration/src/main/config/xmlcomponents/dataWarning.xml b/dataWarning/dataWarning-configuration/src/main/config/xmlcomponents/dataWarning.xml
index a9646b79db..36e3f2565a 100644
--- a/dataWarning/dataWarning-configuration/src/main/config/xmlcomponents/dataWarning.xml
+++ b/dataWarning/dataWarning-configuration/src/main/config/xmlcomponents/dataWarning.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/dataWarning/dataWarning-library/pom.xml b/dataWarning/dataWarning-library/pom.xml
index ea3933c929..69819d4492 100644
--- a/dataWarning/dataWarning-library/pom.xml
+++ b/dataWarning/dataWarning-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>datawarning</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.datawarning</groupId>
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningDBDriver.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningDBDriver.java
index f6b926e292..9e3efff4fe 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningDBDriver.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningDBDriver.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningDBDrivers.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningDBDrivers.java
index 21262cd640..590a8f4d2e 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningDBDrivers.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningDBDrivers.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningException.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningException.java
index a7e1a56583..392a8b771a 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningException.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningInitialize.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningInitialize.java
index 4ea415e8ba..451b2f117f 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningInitialize.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningInitialize.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningInstancePostConstruction.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningInstancePostConstruction.java
index 416a85c913..58031b423f 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningInstancePostConstruction.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningInstancePreDestruction.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningInstancePreDestruction.java
index f4bed5ad09..b59ff2354f 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningInstancePreDestruction.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningRuntimeException.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningRuntimeException.java
index 37fc0ff8f7..fd3d5d80f6 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningRuntimeException.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/DataWarningRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarning.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarning.java
index 9a26940473..77a08b68ec 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarning.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarning.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning.model;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningDataManager.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningDataManager.java
index a1a84b27f9..fbb7eff7de 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningDataManager.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningDataManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.datawarning.model;
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningGroup.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningGroup.java
index e2432e4c93..fe32ff8020 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningGroup.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningGroup.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning.model;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningQuery.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningQuery.java
index fe825f74ea..ab481a016b 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningQuery.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningQuery.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning.model;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningQueryResult.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningQueryResult.java
index cef19295ff..ad72e44593 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningQueryResult.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningQueryResult.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning.model;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningResult.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningResult.java
index 07de6db5f0..ccbb9391f9 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningResult.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningResult.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning.model;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningScheduler.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningScheduler.java
index 17a2cd7900..437112474b 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningScheduler.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningScheduler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning.model;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningUser.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningUser.java
index c404a4ff2a..52630d8470 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningUser.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/model/DataWarningUser.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning.model;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/service/DataWarningEngine.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/service/DataWarningEngine.java
index c63899b691..82ab677947 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/service/DataWarningEngine.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/service/DataWarningEngine.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning.service;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/service/DataWarningSchedulerImpl.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/service/DataWarningSchedulerImpl.java
index 35c9ab75d0..539db86af5 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/service/DataWarningSchedulerImpl.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/service/DataWarningSchedulerImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning.service;
 
diff --git a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/service/DataWarningSchedulerTable.java b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/service/DataWarningSchedulerTable.java
index 1bfbe39eaf..05d6683dd5 100644
--- a/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/service/DataWarningSchedulerTable.java
+++ b/dataWarning/dataWarning-library/src/main/java/org/silverpeas/components/datawarning/service/DataWarningSchedulerTable.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning.service;
 
diff --git a/dataWarning/dataWarning-war/pom.xml b/dataWarning/dataWarning-war/pom.xml
index 16fa822103..8f9d4469bd 100644
--- a/dataWarning/dataWarning-war/pom.xml
+++ b/dataWarning/dataWarning-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>datawarning</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.datawarning</groupId>
diff --git a/dataWarning/dataWarning-war/src/main/java/org/silverpeas/components/datawarning/DataWarningIndexer.java b/dataWarning/dataWarning-war/src/main/java/org/silverpeas/components/datawarning/DataWarningIndexer.java
index af74bab46c..e217b24d47 100644
--- a/dataWarning/dataWarning-war/src/main/java/org/silverpeas/components/datawarning/DataWarningIndexer.java
+++ b/dataWarning/dataWarning-war/src/main/java/org/silverpeas/components/datawarning/DataWarningIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 
diff --git a/dataWarning/dataWarning-war/src/main/java/org/silverpeas/components/datawarning/control/DataWarningSessionController.java b/dataWarning/dataWarning-war/src/main/java/org/silverpeas/components/datawarning/control/DataWarningSessionController.java
index 20009b631f..014acbf9cf 100644
--- a/dataWarning/dataWarning-war/src/main/java/org/silverpeas/components/datawarning/control/DataWarningSessionController.java
+++ b/dataWarning/dataWarning-war/src/main/java/org/silverpeas/components/datawarning/control/DataWarningSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.datawarning.control;
 
diff --git a/dataWarning/dataWarning-war/src/main/java/org/silverpeas/components/datawarning/servlets/DataWarningRequestRouter.java b/dataWarning/dataWarning-war/src/main/java/org/silverpeas/components/datawarning/servlets/DataWarningRequestRouter.java
index 77755b9d3b..c222349efa 100644
--- a/dataWarning/dataWarning-war/src/main/java/org/silverpeas/components/datawarning/servlets/DataWarningRequestRouter.java
+++ b/dataWarning/dataWarning-war/src/main/java/org/silverpeas/components/datawarning/servlets/DataWarningRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.datawarning.servlets;
diff --git a/dataWarning/dataWarning-war/src/main/webapp/WEB-INF/web.xml b/dataWarning/dataWarning-war/src/main/webapp/WEB-INF/web.xml
index dec76d712c..ca34d439f3 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/WEB-INF/web.xml
+++ b/dataWarning/dataWarning-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/check.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/check.jsp
index 50f30560cd..8ab3aabc17 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/check.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/checkDataWarning.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/checkDataWarning.jsp
index 4c20f11a8c..bb9d72c126 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/checkDataWarning.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/checkDataWarning.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/closeJsp.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/closeJsp.jsp
index 977d55a5eb..cc595cc32f 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/closeJsp.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/closeJsp.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/connectionParameters.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/connectionParameters.jsp
index b45ff29da0..38352db397 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/connectionParameters.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/connectionParameters.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/dataWarning.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/dataWarning.jsp
index 20dcef80a1..4da52700ad 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/dataWarning.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/dataWarning.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editParamGen.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editParamGen.jsp
index 0577a6cccc..c732031134 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editParamGen.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editParamGen.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editParamGenQuery.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editParamGenQuery.jsp
index 30c6941417..9487fc5c02 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editParamGenQuery.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editParamGenQuery.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editReqExpert.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editReqExpert.jsp
index ef5e84c91d..e0bfa9c2c5 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editReqExpert.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editReqExpert.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editSeuil.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editSeuil.jsp
index f6b64b4aa6..521d7c829e 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editSeuil.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/editSeuil.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/export.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/export.jsp
index b0cc334722..b72b681174 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/export.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/export.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/imports.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/imports.jsp
index 53f3e23bb0..94907f01e2 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/imports.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/imports.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/init.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/init.jsp
index 6d69e8dbd6..ef30ff421a 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/init.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/init.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/previewReq.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/previewReq.jsp
index c324644f9e..674f3efe11 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/previewReq.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/previewReq.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/requestParameters.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/requestParameters.jsp
index ed13c3b009..98886cf8a0 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/requestParameters.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/requestParameters.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/schedulerParameters.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/schedulerParameters.jsp
index 4b3cb074c7..09341c43d2 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/schedulerParameters.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/schedulerParameters.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectAgrega.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectAgrega.jsp
index a477170cbb..3fef7b38b0 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectAgrega.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectAgrega.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectColumns.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectColumns.jsp
index 2169835513..985a6a89fb 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectColumns.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectColumns.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectConstraints.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectConstraints.jsp
index 91b92582cb..8586874679 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectConstraints.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectConstraints.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectTable.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectTable.jsp
index f0919e3cf2..596883820e 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectTable.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/selectTable.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/welcome.jsp b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/welcome.jsp
index 7fbb1b3803..869f2afd48 100644
--- a/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/welcome.jsp
+++ b/dataWarning/dataWarning-war/src/main/webapp/dataWarning/jsp/welcome.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/dataWarning/pom.xml b/dataWarning/pom.xml
index f6f906c5a5..c3fb00057e 100644
--- a/dataWarning/pom.xml
+++ b/dataWarning/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-     <version>6.3-SNAPSHOT</version>
+     <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/delegatednews/delegatednews-configuration/pom.xml b/delegatednews/delegatednews-configuration/pom.xml
index 13691b9067..4706da2900 100644
--- a/delegatednews/delegatednews-configuration/pom.xml
+++ b/delegatednews/delegatednews-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>delegatednews</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.delegatednews</groupId>
diff --git a/delegatednews/delegatednews-configuration/src/main/config/migrations/modules/delegatedNews-migration.xml b/delegatednews/delegatednews-configuration/src/main/config/migrations/modules/delegatedNews-migration.xml
index 4106d162df..0f4b9b5ee2 100644
--- a/delegatednews/delegatednews-configuration/src/main/config/migrations/modules/delegatedNews-migration.xml
+++ b/delegatednews/delegatednews-configuration/src/main/config/migrations/modules/delegatedNews-migration.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle.properties b/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle.properties
index 738192a89e..c1604473b6 100644
--- a/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle.properties
+++ b/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 delegatednews.updateDate = Derni\u00e8re modification
 delegatednews.contributor = Contributeur
diff --git a/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle_de.properties b/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle_de.properties
index 4f1563e0e3..dce37b1c14 100644
--- a/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle_de.properties
+++ b/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://repository.silverpeas.com/legal/licensing"
+# "https://www.silverpeas.org/legal/licensing"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 delegatednews.updateDate = Datum der letzten \u00c4nderung
 delegatednews.contributor = Mitwirkender
diff --git a/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle_en.properties b/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle_en.properties
index 893c83261e..b334657689 100644
--- a/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle_en.properties
+++ b/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://repository.silverpeas.com/legal/licensing"
+# "https://www.silverpeas.org/legal/licensing"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 delegatednews.updateDate = Last update
 delegatednews.contributor = Contributor
diff --git a/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle_fr.properties b/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle_fr.properties
index fce45052ac..ca432fbc52 100644
--- a/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle_fr.properties
+++ b/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/multilang/DelegatedNewsBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://repository.silverpeas.com/legal/licensing"
+# "https://www.silverpeas.org/legal/licensing"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 delegatednews.updateDate = Derni\u00e8re modification
 delegatednews.contributor = Contributeur
diff --git a/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/settings/DelegatedNewsIcons.properties b/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/settings/DelegatedNewsIcons.properties
index 37b7f2345c..54f80d7b2a 100644
--- a/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/settings/DelegatedNewsIcons.properties
+++ b/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/settings/DelegatedNewsIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://repository.silverpeas.com/legal/licensing"
+# "https://www.silverpeas.org/legal/licensing"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,6 +19,6 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 delegatednews.icons.delete=../../util/icons/delete.gif
\ No newline at end of file
diff --git a/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/settings/DelegatedNewsSettings.properties b/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/settings/DelegatedNewsSettings.properties
index 30874e429b..716db77ec4 100644
--- a/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/settings/DelegatedNewsSettings.properties
+++ b/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/delegatednews/settings/DelegatedNewsSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 templatePath=${env.SILVERPEAS_HOME}/resources/StringTemplates/components/delegatednews/
diff --git a/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/util/logging/delegatednewsLogging.properties b/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/util/logging/delegatednewsLogging.properties
index c5ddc002c3..6d17c78c27 100644
--- a/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/util/logging/delegatednewsLogging.properties
+++ b/delegatednews/delegatednews-configuration/src/main/config/properties/org/silverpeas/util/logging/delegatednewsLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/delegatednews/delegatednews-configuration/src/main/config/xmlcomponents/delegatednews.xml b/delegatednews/delegatednews-configuration/src/main/config/xmlcomponents/delegatednews.xml
index a5f0c2289e..0e5f50e926 100644
--- a/delegatednews/delegatednews-configuration/src/main/config/xmlcomponents/delegatednews.xml
+++ b/delegatednews/delegatednews-configuration/src/main/config/xmlcomponents/delegatednews.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/delegatednews/delegatednews-library/pom.xml b/delegatednews/delegatednews-library/pom.xml
index c5ec38802f..305a8ee9a3 100644
--- a/delegatednews/delegatednews-library/pom.xml
+++ b/delegatednews/delegatednews-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>delegatednews</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.delegatednews</groupId>
diff --git a/delegatednews/delegatednews-library/src/integration-test/java/org/silverpeas/components/delegatednews/dao/DelegatedNewsDaoIT.java b/delegatednews/delegatednews-library/src/integration-test/java/org/silverpeas/components/delegatednews/dao/DelegatedNewsDaoIT.java
index 078f8a1b05..6065ab6d2e 100644
--- a/delegatednews/delegatednews-library/src/integration-test/java/org/silverpeas/components/delegatednews/dao/DelegatedNewsDaoIT.java
+++ b/delegatednews/delegatednews-library/src/integration-test/java/org/silverpeas/components/delegatednews/dao/DelegatedNewsDaoIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.delegatednews.dao;
 
diff --git a/delegatednews/delegatednews-library/src/integration-test/java/org/silverpeas/components/delegatednews/service/DelegatedNewsServiceIT.java b/delegatednews/delegatednews-library/src/integration-test/java/org/silverpeas/components/delegatednews/service/DelegatedNewsServiceIT.java
index 873c6ea676..620c5a65f6 100644
--- a/delegatednews/delegatednews-library/src/integration-test/java/org/silverpeas/components/delegatednews/service/DelegatedNewsServiceIT.java
+++ b/delegatednews/delegatednews-library/src/integration-test/java/org/silverpeas/components/delegatednews/service/DelegatedNewsServiceIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/delegatednews/delegatednews-library/src/integration-test/resources/arquillian.xml b/delegatednews/delegatednews-library/src/integration-test/resources/arquillian.xml
index c14046f2bb..bc5b073b7d 100644
--- a/delegatednews/delegatednews-library/src/integration-test/resources/arquillian.xml
+++ b/delegatednews/delegatednews-library/src/integration-test/resources/arquillian.xml
@@ -1,6 +1,6 @@
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <arquillian xmlns="http://jboss.org/schema/arquillian"
diff --git a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/DelegatedNewsRuntimeException.java b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/DelegatedNewsRuntimeException.java
index fd75cc884b..95c460d061 100644
--- a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/DelegatedNewsRuntimeException.java
+++ b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/DelegatedNewsRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.delegatednews;
diff --git a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/DelegatedPublicationEventListener.java b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/DelegatedPublicationEventListener.java
index fff4aba4f5..e2811762fd 100644
--- a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/DelegatedPublicationEventListener.java
+++ b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/DelegatedPublicationEventListener.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.delegatednews;
 
diff --git a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/dao/DelegatedNewsJpaRepository.java b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/dao/DelegatedNewsJpaRepository.java
index 83d4962be9..5305509193 100644
--- a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/dao/DelegatedNewsJpaRepository.java
+++ b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/dao/DelegatedNewsJpaRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.delegatednews.dao;
diff --git a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/dao/DelegatedNewsRepository.java b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/dao/DelegatedNewsRepository.java
index d2baffed37..3a34cc7f9e 100644
--- a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/dao/DelegatedNewsRepository.java
+++ b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/dao/DelegatedNewsRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.delegatednews.dao;
 
diff --git a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/model/DelegatedNews.java b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/model/DelegatedNews.java
index 508b6ca123..87a7971567 100644
--- a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/model/DelegatedNews.java
+++ b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/model/DelegatedNews.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.delegatednews.model;
diff --git a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/AbstractDelegatedNewsUserNotification.java b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/AbstractDelegatedNewsUserNotification.java
index 3c833a1922..d05f9c8dfc 100644
--- a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/AbstractDelegatedNewsUserNotification.java
+++ b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/AbstractDelegatedNewsUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.delegatednews.notification;
diff --git a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/DelegatedNewsDeniedNotification.java b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/DelegatedNewsDeniedNotification.java
index 38483c2315..52f09edfb8 100644
--- a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/DelegatedNewsDeniedNotification.java
+++ b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/DelegatedNewsDeniedNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.delegatednews.notification;
 
diff --git a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/DelegatedNewsToValidateNotification.java b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/DelegatedNewsToValidateNotification.java
index 9e0dc59585..8143cd0ef0 100644
--- a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/DelegatedNewsToValidateNotification.java
+++ b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/DelegatedNewsToValidateNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.delegatednews.notification;
 
diff --git a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/DelegatedNewsValidationNotification.java b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/DelegatedNewsValidationNotification.java
index 58e0722127..89ab12b885 100644
--- a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/DelegatedNewsValidationNotification.java
+++ b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/notification/DelegatedNewsValidationNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.delegatednews.notification;
 
diff --git a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/service/DelegatedNewsService.java b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/service/DelegatedNewsService.java
index f532f7b32a..eadf7ee491 100644
--- a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/service/DelegatedNewsService.java
+++ b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/service/DelegatedNewsService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.delegatednews.service;
 
diff --git a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/service/DelegatedNewsServiceImpl.java b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/service/DelegatedNewsServiceImpl.java
index 69a1236bc1..d34af87dc6 100644
--- a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/service/DelegatedNewsServiceImpl.java
+++ b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/service/DelegatedNewsServiceImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.delegatednews.service;
 
diff --git a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/service/DelegatedNewsServiceProvider.java b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/service/DelegatedNewsServiceProvider.java
index d470a9edd3..1ef45460b1 100644
--- a/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/service/DelegatedNewsServiceProvider.java
+++ b/delegatednews/delegatednews-library/src/main/java/org/silverpeas/components/delegatednews/service/DelegatedNewsServiceProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.delegatednews.service;
 
diff --git a/delegatednews/delegatednews-war/pom.xml b/delegatednews/delegatednews-war/pom.xml
index e2e6b40c18..b503b1c213 100644
--- a/delegatednews/delegatednews-war/pom.xml
+++ b/delegatednews/delegatednews-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>delegatednews</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.delegatednews</groupId>
diff --git a/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/DelegatednewsIndexer.java b/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/DelegatednewsIndexer.java
index 6ce77080a2..1bb65f2a16 100644
--- a/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/DelegatednewsIndexer.java
+++ b/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/DelegatednewsIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.delegatednews;
 
diff --git a/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/control/DelegatedNewsSessionController.java b/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/control/DelegatedNewsSessionController.java
index 00d582381b..6fa9291999 100644
--- a/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/control/DelegatedNewsSessionController.java
+++ b/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/control/DelegatedNewsSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.delegatednews.control;
 
diff --git a/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/servlets/DelegatedNewsRequestRouter.java b/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/servlets/DelegatedNewsRequestRouter.java
index 33a36cda86..d4db17a5ef 100644
--- a/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/servlets/DelegatedNewsRequestRouter.java
+++ b/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/servlets/DelegatedNewsRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.delegatednews.servlets;
 
diff --git a/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/web/DelegatedNewsEntity.java b/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/web/DelegatedNewsEntity.java
index e7fec69044..e5f8b73908 100644
--- a/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/web/DelegatedNewsEntity.java
+++ b/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/web/DelegatedNewsEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.delegatednews.web;
 
diff --git a/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/web/ListDelegatedNewsResource.java b/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/web/ListDelegatedNewsResource.java
index 6071b95aef..0ca83e2a8d 100644
--- a/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/web/ListDelegatedNewsResource.java
+++ b/delegatednews/delegatednews-war/src/main/java/org/silverpeas/components/delegatednews/web/ListDelegatedNewsResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.delegatednews.web;
 
diff --git a/delegatednews/delegatednews-war/src/main/webapp/WEB-INF/web.xml b/delegatednews/delegatednews-war/src/main/webapp/WEB-INF/web.xml
index 1dabca5beb..9495a47668 100644
--- a/delegatednews/delegatednews-war/src/main/webapp/WEB-INF/web.xml
+++ b/delegatednews/delegatednews-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/delegatednews/delegatednews-war/src/main/webapp/delegatednews/jsp/check.jsp b/delegatednews/delegatednews-war/src/main/webapp/delegatednews/jsp/check.jsp
index 7832edf544..891f17f42a 100644
--- a/delegatednews/delegatednews-war/src/main/webapp/delegatednews/jsp/check.jsp
+++ b/delegatednews/delegatednews-war/src/main/webapp/delegatednews/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/delegatednews/delegatednews-war/src/main/webapp/delegatednews/jsp/listNews.jsp b/delegatednews/delegatednews-war/src/main/webapp/delegatednews/jsp/listNews.jsp
index ec3bb027c3..205ae75267 100644
--- a/delegatednews/delegatednews-war/src/main/webapp/delegatednews/jsp/listNews.jsp
+++ b/delegatednews/delegatednews-war/src/main/webapp/delegatednews/jsp/listNews.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/delegatednews/pom.xml b/delegatednews/pom.xml
index 7a53cbae54..e0ff6c6831 100644
--- a/delegatednews/pom.xml
+++ b/delegatednews/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
   
   <groupId>org.silverpeas.components</groupId>
diff --git a/exceptions.txt b/exceptions.txt
index 1d96c44961..19d6116404 100644
--- a/exceptions.txt
+++ b/exceptions.txt
@@ -81,7 +81,7 @@ Zope Public License 2.0
     Due to the many variants of some of the above licenses, we
     require that any version follow the 2003 version of the Free
     Software Foundation's Free Software Definition
-    (http://www.gnu.org/philosophy/free-sw.html) or version 1.9 of
+    (https://www.gnu.org/philosophy/free-sw.html) or version 1.9 of
     the Open Source Definition by the Open Source Initiative
     (http://www.opensource.org/docs/definition.php).
 
diff --git a/formsOnline/formsOnline-configuration/pom.xml b/formsOnline/formsOnline-configuration/pom.xml
index 0824e5f3bb..89bc87defe 100644
--- a/formsOnline/formsOnline-configuration/pom.xml
+++ b/formsOnline/formsOnline-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>formsonline</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.formsonline</groupId>
diff --git a/formsOnline/formsOnline-configuration/src/main/config/migrations/modules/formsOnline-migration.xml b/formsOnline/formsOnline-configuration/src/main/config/migrations/modules/formsOnline-migration.xml
index 3c79f7c7a1..441be6ccdd 100644
--- a/formsOnline/formsOnline-configuration/src/main/config/migrations/modules/formsOnline-migration.xml
+++ b/formsOnline/formsOnline-configuration/src/main/config/migrations/modules/formsOnline-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify it under the terms of the
   ~ GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -10,14 +10,14 @@
   ~ redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
   ~ applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
   ~ text describing the FLOSS exception, and it is also available here:
-  ~ "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  ~ "https://www.silverpeas.org/legal/floss_exception.html"
   ~
   ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
   ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   ~ Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License along with this program.
-  ~ If not, see <http://www.gnu.org/licenses/>.
+  ~ If not, see <https://www.gnu.org/licenses/>.
   -->
 
 
diff --git a/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle.properties b/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle.properties
index be90861d84..665b43a1d9 100644
--- a/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle.properties
+++ b/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 formsOnline.Form = Formulaire
diff --git a/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle_de.properties b/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle_de.properties
index f43bfd97e1..ef7d62751a 100644
--- a/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle_de.properties
+++ b/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 formsOnline.Form = Formular
diff --git a/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle_en.properties b/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle_en.properties
index 874826ea66..1f8ce81593 100644
--- a/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle_en.properties
+++ b/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 formsOnline.Form = Form
diff --git a/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle_fr.properties b/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle_fr.properties
index be90861d84..665b43a1d9 100644
--- a/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle_fr.properties
+++ b/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/multilang/formsOnlineBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 formsOnline.Form = Formulaire
diff --git a/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/settings/formsOnlineIcons.properties b/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/settings/formsOnlineIcons.properties
index 293449c599..5a24c064c1 100644
--- a/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/settings/formsOnlineIcons.properties
+++ b/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/settings/formsOnlineIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 formsOnline.logo = /formsOnline/jsp/icons/logo.gif
diff --git a/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/settings/formsOnlineSettings.properties b/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/settings/formsOnlineSettings.properties
index 7a67d93d09..919f82da6c 100644
--- a/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/settings/formsOnlineSettings.properties
+++ b/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/formsonline/settings/formsOnlineSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,5 +19,5 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
diff --git a/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/util/logging/formsOnlineLogging.properties b/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/util/logging/formsOnlineLogging.properties
index b2a2face7f..1091b885b0 100644
--- a/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/util/logging/formsOnlineLogging.properties
+++ b/formsOnline/formsOnline-configuration/src/main/config/properties/org/silverpeas/util/logging/formsOnlineLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/formsOnline/formsOnline-configuration/src/main/config/xmlcomponents/formsOnline.xml b/formsOnline/formsOnline-configuration/src/main/config/xmlcomponents/formsOnline.xml
index 266518ab01..890b081c0a 100644
--- a/formsOnline/formsOnline-configuration/src/main/config/xmlcomponents/formsOnline.xml
+++ b/formsOnline/formsOnline-configuration/src/main/config/xmlcomponents/formsOnline.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
@@ -105,5 +105,49 @@
         </message>
       </help>
     </parameter>
+    <parameter>
+      <name>displaySort</name>
+      <label>
+        <message lang="fr">Ordre d'affichage des formulaires</message>
+        <message lang="en">Order of display of forms</message>
+        <message lang="de">Reihenfolge der Anzeige von Formularen</message>
+      </label>
+      <order>2</order>
+      <mandatory>true</mandatory>
+      <value>name</value>
+      <options>
+        <option>
+          <name>
+            <message lang="fr">Par ordre alphabétique</message>
+            <message lang="en">Name ascending</message>
+            <message lang="de">In alphabetischer Reihenfolge</message>
+          </name>
+          <value>name asc</value>
+        </option>
+        <option>
+          <name>
+            <message lang="fr">Date de création croissante</message>
+            <message lang="en">Creation date ascending</message>
+            <message lang="de">Erstellungsdatum aufsteigend</message>
+          </name>
+          <value>creationDate asc</value>
+        </option>
+        <option>
+          <name>
+            <message lang="fr">Date de création décroissante</message>
+            <message lang="en">Creation date descending</message>
+            <message lang="de">Erstellungsdatum absteigend</message>
+          </name>
+          <value>creationDate desc</value>
+        </option>
+      </options>
+      <type>select</type>
+      <updatable>always</updatable>
+      <help>
+        <message lang="fr">Permet de définir l'ordre d'affichage des formulaires</message>
+        <message lang="en">Allows you to define the order in which the forms are displayed</message>
+        <message lang="de">Ermöglicht es Ihnen, die Reihenfolge festzulegen, in der die Formulare angezeigt werden.</message>
+      </help>
+    </parameter>
   </parameters>
 </WAComponent>
\ No newline at end of file
diff --git a/formsOnline/formsOnline-library/pom.xml b/formsOnline/formsOnline-library/pom.xml
index 13d1bbee20..e638f31e69 100644
--- a/formsOnline/formsOnline-library/pom.xml
+++ b/formsOnline/formsOnline-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>formsonline</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.formsonline</groupId>
diff --git a/formsOnline/formsOnline-library/src/integration-test/java/org/silverpeas/components/formsonline/model/AbstractFormsOnlineIT.java b/formsOnline/formsOnline-library/src/integration-test/java/org/silverpeas/components/formsonline/model/AbstractFormsOnlineIT.java
index a861f47324..e989f96a68 100644
--- a/formsOnline/formsOnline-library/src/integration-test/java/org/silverpeas/components/formsonline/model/AbstractFormsOnlineIT.java
+++ b/formsOnline/formsOnline-library/src/integration-test/java/org/silverpeas/components/formsonline/model/AbstractFormsOnlineIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.formsonline.model;
@@ -64,6 +64,8 @@ public abstract class AbstractFormsOnlineIT {
   static final String DYNAMIC_DATA_INSTANCE_ID = "formsOnline26";
   static final String DEFAULT_INSTANCE_ID = "formsOnline100";
 
+  static final String ORDERBY_DEFAULT = "name";
+
   static final String VALIDATOR_ID_29 = "29";
   static final String VALIDATOR_ID_30 = "30";
   static final String VALIDATOR_ID_31 = "31";
diff --git a/formsOnline/formsOnline-library/src/integration-test/java/org/silverpeas/components/formsonline/model/FormsOnlineDAOJdbcIT.java b/formsOnline/formsOnline-library/src/integration-test/java/org/silverpeas/components/formsonline/model/FormsOnlineDAOJdbcIT.java
index 5dbd0bcaf7..f62fc381f6 100644
--- a/formsOnline/formsOnline-library/src/integration-test/java/org/silverpeas/components/formsonline/model/FormsOnlineDAOJdbcIT.java
+++ b/formsOnline/formsOnline-library/src/integration-test/java/org/silverpeas/components/formsonline/model/FormsOnlineDAOJdbcIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.model;
 
@@ -183,13 +183,13 @@ private FormDetail getFormDetailExpectedResult() {
    */
   @Test
   public void testFindAllForms() throws Exception {
-    List<FormDetail> result = dao.findAllForms(DEFAULT_INSTANCE_ID);
+    List<FormDetail> result = dao.findAllForms(DEFAULT_INSTANCE_ID,ORDERBY_DEFAULT);
     assertThat(result.size(), is(2));
   }
 
   @Test
   public void testDeleteForm() throws Exception {
-    List<FormDetail> result = dao.findAllForms(DEFAULT_INSTANCE_ID);
+    List<FormDetail> result = dao.findAllForms(DEFAULT_INSTANCE_ID,ORDERBY_DEFAULT);
     assertThat(result.size(), is(2));
     final FormPK formPk = result.iterator().next().getPK();
     Transaction.performInOne(() -> {
@@ -200,7 +200,7 @@ public void testDeleteForm() throws Exception {
       }
       return dao.deleteForm(formPk);
     });
-    result = dao.findAllForms(DEFAULT_INSTANCE_ID);
+    result = dao.findAllForms(DEFAULT_INSTANCE_ID,ORDERBY_DEFAULT);
     assertThat(result.size(), is(1));
   }
 
diff --git a/formsOnline/formsOnline-library/src/integration-test/java/org/silverpeas/components/formsonline/model/FormsOnlineServiceTestIT.java b/formsOnline/formsOnline-library/src/integration-test/java/org/silverpeas/components/formsonline/model/FormsOnlineServiceTestIT.java
index 48d19fa407..5b1ad9bf6d 100644
--- a/formsOnline/formsOnline-library/src/integration-test/java/org/silverpeas/components/formsonline/model/FormsOnlineServiceTestIT.java
+++ b/formsOnline/formsOnline-library/src/integration-test/java/org/silverpeas/components/formsonline/model/FormsOnlineServiceTestIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.formsonline.model;
diff --git a/formsOnline/formsOnline-library/src/integration-test/resources/arquillian.xml b/formsOnline/formsOnline-library/src/integration-test/resources/arquillian.xml
index c14046f2bb..bc5b073b7d 100644
--- a/formsOnline/formsOnline-library/src/integration-test/resources/arquillian.xml
+++ b/formsOnline/formsOnline-library/src/integration-test/resources/arquillian.xml
@@ -1,6 +1,6 @@
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <arquillian xmlns="http://jboss.org/schema/arquillian"
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/FormsOnlineComponentAuthorization.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/FormsOnlineComponentAuthorization.java
index 4ac56be26e..a1f8616f54 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/FormsOnlineComponentAuthorization.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/FormsOnlineComponentAuthorization.java
@@ -37,8 +37,9 @@ public <T> Stream<T> filter(final Collection<T> resources,
         .filterAuthorizedByUser(componentIds, userId)
         .collect(Collectors.toSet());
     try {
+      String orderBy = "name asc";
       final Set<String> formIds = FormsOnlineService.get()
-          .getAvailableFormsToSend(componentIds, userId).stream()
+          .getAvailableFormsToSend(componentIds, userId, orderBy).stream()
           .map(f -> String.valueOf(f.getId()))
           .collect(Collectors.toSet());
       return resources.stream().filter(r -> formIds.contains(converter.apply(r).getLocalId()));
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/FormsOnlineComponentSettings.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/FormsOnlineComponentSettings.java
index 88ae18fd17..60721ffff3 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/FormsOnlineComponentSettings.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/FormsOnlineComponentSettings.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline;
 
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/FormsOnlineInstancePreDestruction.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/FormsOnlineInstancePreDestruction.java
index 676d00f1fe..34c918f9ea 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/FormsOnlineInstancePreDestruction.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/FormsOnlineInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline;
 
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/DefaultFormsOnlineService.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/DefaultFormsOnlineService.java
index 4e050934d0..4fe0448ec7 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/DefaultFormsOnlineService.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/DefaultFormsOnlineService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.model;
 
@@ -29,9 +29,7 @@
 import org.silverpeas.components.formsonline.notification.FormsOnlineCanceledRequestUserNotification;
 import org.silverpeas.components.formsonline.notification.FormsOnlinePendingValidationRequestUserNotification;
 import org.silverpeas.components.formsonline.notification.FormsOnlineProcessedRequestFollowingUserNotification;
-
-import org.silverpeas.components.formsonline.notification
-    .FormsOnlineProcessedRequestOtherValidatorsUserNotification;
+import org.silverpeas.components.formsonline.notification.FormsOnlineProcessedRequestOtherValidatorsUserNotification;
 import org.silverpeas.components.formsonline.notification.FormsOnlineProcessedRequestUserNotification;
 import org.silverpeas.components.formsonline.notification.FormsOnlineValidationRequestUserNotification;
 import org.silverpeas.core.admin.PaginationPage;
@@ -39,8 +37,9 @@
 import org.silverpeas.core.admin.user.model.Group;
 import org.silverpeas.core.admin.user.model.User;
 import org.silverpeas.core.admin.user.model.UserDetail;
-import org.silverpeas.core.annotation.Service;
 import org.silverpeas.core.admin.user.model.UserFull;
+import org.silverpeas.core.annotation.Service;
+import org.silverpeas.core.cache.service.CacheServiceProvider;
 import org.silverpeas.core.contribution.ContributionStatus;
 import org.silverpeas.core.contribution.attachment.AttachmentServiceProvider;
 import org.silverpeas.core.contribution.attachment.model.SimpleDocument;
@@ -88,15 +87,7 @@
 import javax.mail.internet.MimeMultipart;
 import javax.transaction.Transactional;
 import java.time.Instant;
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.Date;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.Optional;
-import java.util.Set;
-import java.util.TreeSet;
+import java.util.*;
 import java.util.function.BiConsumer;
 import java.util.stream.Collectors;
 import java.util.stream.Stream;
@@ -104,6 +95,7 @@
 import static java.text.MessageFormat.format;
 import static java.util.Collections.emptyList;
 import static java.util.Optional.ofNullable;
+import static java.util.function.Predicate.not;
 import static java.util.stream.Collectors.toSet;
 import static org.silverpeas.components.formsonline.model.FormDetail.*;
 import static org.silverpeas.components.formsonline.model.FormInstanceValidationType.HIERARCHICAL;
@@ -113,6 +105,7 @@
 import static org.silverpeas.core.mail.MailContent.getHtmlBodyPartFromHtmlContent;
 import static org.silverpeas.core.notification.user.builder.helper.UserNotificationHelper.buildAndSend;
 import static org.silverpeas.core.util.CollectionUtil.isEmpty;
+import static org.silverpeas.core.util.StringUtil.EMPTY;
 import static org.silverpeas.core.util.StringUtil.isNotDefined;
 
 @Service
@@ -133,7 +126,11 @@ public void init() {
   @Override
   public List<FormDetail> getAllForms(final String appId, final String userId,
       final boolean withSendInfo) throws FormsOnlineException {
-    List<FormDetail> forms = getDAO().findAllForms(appId);
+    String orderBy = organizationController.getComponentParameterValue(appId, "displaySort");
+    orderBy = StringUtil.isDefined(orderBy) ? orderBy: "name asc";
+
+    List<FormDetail> forms = getDAO().findAllForms(appId, orderBy);
+
     Map<Integer, Integer> numbersOfRequests = getDAO().getNumberOfRequestsByForm(appId);
     for (FormDetail form : forms) {
       Integer numberOfRequests = numbersOfRequests.get(form.getId());
@@ -226,8 +223,8 @@ public FormDetail saveForm(FormDetail form,
               .map(Map.Entry::getValue)
               .anyMatch(p -> p.getFirst().isEmpty() && p.getSecond().isEmpty()))
           .isPresent()) {
-      throw new FormsOnlineException(
-          format("published form {0} must have final validators", form.getPK()));
+        throw new FormsOnlineException(
+            format("published form {0} must have final validators", form.getPK()));
       }
     }
     if (theForm.getId() == -1) {
@@ -301,10 +298,10 @@ public void unpublishForm(FormPK pk) throws FormsOnlineException {
   }
 
   @Override
-  public List<FormDetail> getAvailableFormsToSend(Collection<String> appIds, String userId)
+  public List<FormDetail> getAvailableFormsToSend(Collection<String> appIds, String userId, String orderBy)
       throws FormsOnlineException {
     String[] userGroupIds = organizationController.getAllGroupIdsOfUser(userId);
-    return getDAO().getUserAvailableForms(appIds, userId, userGroupIds);
+    return getDAO().getUserAvailableForms(appIds, userId, userGroupIds, orderBy);
   }
 
   @Override
@@ -322,11 +319,11 @@ public RequestsByStatus getAllUserRequests(String appId, String userId,
             getDAO().getSentFormInstances(form.getPK(), userId, states, paginationPage);
         //noinspection SimplifyStreamApiCallChains
         merge.accept(requests, result.stream()
-                                     .map(l -> {
-                                       l.setForm(form);
-                                       return l;
-                                     })
-                                     .collect(SilverpeasList.collector(result)));
+            .map(l -> {
+              l.setForm(form);
+              return l;
+            })
+            .collect(SilverpeasList.collector(result)));
       }
     }
     return requests;
@@ -345,7 +342,7 @@ public RequestsByStatus getValidatorRequests(RequestsFilter filter, String valid
       final String userDomainId = User.getById(validatorId).getDomainId();
       final User[] users = OrganizationController.get().getAllUsersInDomain(userDomainId);
       final Set<String> userIds = Stream.of(users).map(User::getId).collect(toSet());
-      final HierarchicalValidatorCacheManager hvManager = new HierarchicalValidatorCacheManager();
+      final HierarchicalValidatorCacheManager hvManager = HierarchicalValidatorCacheManager.get();
       hvManager.cacheHierarchicalValidatorsOf(userIds);
       return userIds.stream()
           .map(u -> Pair.of(u, hvManager.getHierarchicalValidatorOf(u)))
@@ -380,7 +377,7 @@ public RequestsByStatus getValidatorRequests(RequestsFilter filter, String valid
         final Optional<FormInstanceValidationType> pendingValidationTypeFilter = filter
             .getPendingValidationType();
         final SilverpeasList<FormInstance> result = getDAO().getReceivedRequests(form, states, validationCriteria,
-                ofNullable(paginationPage).filter(p -> pendingValidationTypeFilter.isEmpty()).orElse(null));
+            ofNullable(paginationPage).filter(p -> pendingValidationTypeFilter.isEmpty()).orElse(null));
         @SuppressWarnings("SimplifyStreamApiCallChains")
         Stream<FormInstance> resultStream = result.stream().map(l -> {
           l.setForm(form);
@@ -410,7 +407,7 @@ private Stream<FormInstance> filterOnValidationType(Stream<FormInstance> resultS
                 .reduce((a, b) -> b);
             return previousType
                 .map(p ->r.getValidations().getValidationOfType(p).filter(FormInstanceValidation::isValidated).isPresent()
-                         && r.getValidations().getValidationOfType(type).isEmpty())
+                    && r.getValidations().getValidationOfType(type).isEmpty())
                 .orElseGet(() -> r.getValidations().isEmpty());
           });
     }
@@ -423,8 +420,8 @@ public Map<String, Set<FormInstanceValidationType>> getValidatorFormIdsWithValid
     final String[] userGroupIds = organizationController.getAllGroupIdsOfUser(validatorId);
     final Map<String, Set<FormInstanceValidationType>> result = getDAO()
         .getValidatorFormIdsWithValidationTypes(appId, validatorId, userGroupIds, formIds);
-    // get available form as boss
-    final List<FormDetail> forms = getDAO().findAllForms(appId);
+    String orderBy = organizationController.getComponentParameterValue(appId, "displaySort");
+    final List<FormDetail> forms = getDAO().findAllForms(appId, orderBy);
     final HierarchicalValidatorCacheManager hvManager = new HierarchicalValidatorCacheManager();
     for (FormDetail form : forms) {
       if (form.isHierarchicalValidation() && (isEmpty(formIds) || formIds.contains(form.getPK().getId()))) {
@@ -437,7 +434,7 @@ public Map<String, Set<FormInstanceValidationType>> getValidatorFormIdsWithValid
             .findFirst()
             .ifPresent(b ->
                 result.computeIfAbsent(Integer.toString(form.getId()), s -> new TreeSet<>())
-                      .add(HIERARCHICAL));
+                    .add(HIERARCHICAL));
       }
     }
     return result;
@@ -915,7 +912,7 @@ private void removeIndex(FormPK pk) {
   }
 
   private IndexEntryKey getIndexEntryKey(FormPK pk) {
-   return new IndexEntryKey(pk.getInstanceId(), "FormOnline", pk.getId());
+    return new IndexEntryKey(pk.getInstanceId(), "FormOnline", pk.getId());
   }
 
   public void index(String componentId) {
@@ -943,17 +940,33 @@ private void setSendersAndReceivers(FormDetail form) throws FormsOnlineException
 
   /**
    * Permits to manage a cache in order to increase performances.
+   * <p>
+   *   This cache is thread scoped.
+   * </p>
    */
   public static class HierarchicalValidatorCacheManager {
 
+    private static final String CACHE_KEY = HierarchicalValidatorCacheManager.class.getName();
+    private final Set<String> userIds = new HashSet<>();
     private final Map<String, String> cache = new HashMap<>();
 
+    public static HierarchicalValidatorCacheManager get() {
+      return CacheServiceProvider.getThreadCacheService()
+          .getCache()
+          .computeIfAbsent(CACHE_KEY, HierarchicalValidatorCacheManager.class,
+              HierarchicalValidatorCacheManager::new);
+    }
+
+    private HierarchicalValidatorCacheManager() {
+      // hidden constructor
+    }
+
     /**
      * Caches the hierarchical validators of users represented by given ids.
      * @param userIds set of string user ids.
      */
     public void cacheHierarchicalValidatorsOf(final Set<String> userIds) {
-      userIds.forEach(this::getHierarchicalValidatorOf);
+      userIds.stream().filter(not(cache::containsKey)).forEach(this.userIds::add);
     }
 
     /**
@@ -965,9 +978,19 @@ public void cacheHierarchicalValidatorsOf(final Set<String> userIds) {
      * @return the hierarchical validator of the user represented by the given id.
      */
     public String getHierarchicalValidatorOf(final String userId) {
-      return cache.computeIfAbsent(userId, i -> ofNullable(UserFull.getById(i))
-          .map(u -> u.getValue("boss"))
-          .orElse(StringUtil.EMPTY));
+      if (!userIds.isEmpty()) {
+        UserFull.getByIds(userIds).forEach(u -> {
+          final String id = u.getId();
+          userIds.remove(id);
+          cache.put(id, ofNullable(u.getValue("boss")).orElse(EMPTY));
+        });
+        userIds.forEach(i -> cache.put(i, EMPTY));
+        userIds.clear();
+      }
+      return cache.computeIfAbsent(userId,
+          i -> ofNullable(UserFull.getById(i))
+              .map(u -> u.getValue("boss"))
+              .orElse(StringUtil.EMPTY));
     }
   }
 }
\ No newline at end of file
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormDetail.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormDetail.java
index e8b0aaa697..bedc2ebec0 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormDetail.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.model;
 
@@ -491,7 +491,7 @@ public String getHierarchicalValidatorOfCurrentUser() {
 
   HierarchicalValidatorCacheManager getHvManager() {
     if (hvManager == null) {
-      hvManager = new HierarchicalValidatorCacheManager();
+      hvManager = HierarchicalValidatorCacheManager.get();
     }
     return hvManager;
   }
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstance.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstance.java
index 1dee974079..4c0a79166a 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstance.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstance.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.model;
 
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstanceValidation.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstanceValidation.java
index 097368dde2..8eaedb61d0 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstanceValidation.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstanceValidation.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.formsonline.model;
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstanceValidationType.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstanceValidationType.java
index 53aa200108..0ef9f4a53c 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstanceValidationType.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstanceValidationType.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.formsonline.model;
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstanceValidations.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstanceValidations.java
index 3912ef05a3..73b020470c 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstanceValidations.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormInstanceValidations.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.formsonline.model;
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormPK.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormPK.java
index 1edeece650..69701fe751 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormPK.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormPK.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.model;
 
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineDAO.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineDAO.java
index e6644872a7..e32e9da2d5 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineDAO.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineDAO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General License for more details.
  *
  * You should have received a copy of the GNU Affero General License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.model;
 
@@ -37,9 +37,10 @@ public interface FormsOnlineDAO {
   /**
    * Get all forms that has been created in given instance
    * @param instanceId the instance id
+   * @param orderBy sort order method
    * @return a List of FormDetail object
    */
-  List<FormDetail> findAllForms(String instanceId) throws FormsOnlineException;
+  List<FormDetail> findAllForms(String instanceId, String orderBy) throws FormsOnlineException;
 
   /**
    * Load forms from database with given instance Id and form id
@@ -137,7 +138,7 @@ List<String> getSendersAsUsers(FormPK pk)
    * @throws FormsOnlineException
    */
   List<FormDetail> getUserAvailableForms(Collection<String> componentIds, String userId,
-      String[] userGroupIds) throws FormsOnlineException;
+      String[] userGroupIds, String orderBy) throws FormsOnlineException;
 
   /**
    * Get all form instances that have been sent by given user (excepted the ones that have been
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineDAOJdbc.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineDAOJdbc.java
index 8f2e712d5f..fba468b450 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineDAOJdbc.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineDAOJdbc.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.formsonline.model;
@@ -83,9 +83,8 @@ public class FormsOnlineDAOJdbc implements FormsOnlineDAO {
   private static final String SELECT_FROM = "SELECT * FROM ";
   private static final String INSERT_INTO = "INSERT INTO ";
   private static final String DELETE_FROM = "DELETE FROM ";
+
   // Queries about Forms
-  private static final String QUERY_FIND_FORMS =
-      SELECT_FROM + FORMS_TABLENAME + " where instanceId = ?";
   private static final String QUERY_LOAD_FORM =
       SELECT_FROM + FORMS_TABLENAME + " where instanceId = ? and id = ?";
   private static final String QUERY_INSERT_FORM = INSERT_INTO + FORMS_TABLENAME +
@@ -199,21 +198,24 @@ public FormDetail getForm(FormPK pk) throws FormsOnlineException {
   }
 
   @Override
-  public List<FormDetail> findAllForms(String instanceId) throws FormsOnlineException {
-    List<FormDetail> forms = new ArrayList<>();
-    try (final Connection con = getConnection();
-         final PreparedStatement stmt = con.prepareStatement(QUERY_FIND_FORMS)) {
-      stmt.setString(1, instanceId);
-      try (ResultSet rs = stmt.executeQuery()) {
-        while (rs.next()) {
-          FormDetail form = fetchFormDetail(rs);
-          forms.add(form);
-        }
-      }
+  public List<FormDetail> findAllForms(String instanceId, String orderBy) throws FormsOnlineException {
+    try {
+      final List<FormDetail> forms = new ArrayList<>();
+        final JdbcSqlQuery query = JdbcSqlQuery.createSelect("*")
+            .from(FORMS_TABLENAME)
+            // 1st criteria : correct instanceId
+            .where(INSTANCE_ID).in(instanceId)
+            .orderBy(orderBy);
+        query.execute(r -> {
+          forms.add(fetchFormDetail(r));
+          return null;
+        });
+    return forms;
     } catch (SQLException se) {
-      throw new FormsOnlineException(failureOnGetting("all forms of instance", instanceId), se);
+      throw new FormsOnlineException(
+          failureOnGetting("Available forms of instance",
+              String.join(",", instanceId)), se);
     }
-    return forms;
   }
 
   @Override
@@ -400,7 +402,7 @@ private void removeUserRights(Connection con, FormPK pk, String rightType) throw
    */
   @Override
   public List<FormDetail> getUserAvailableForms(final Collection<String> instanceIds,
-      final String userId, final String[] userGroupIds) throws FormsOnlineException {
+      final String userId, final String[] userGroupIds, String orderBy) throws FormsOnlineException {
     try {
       final List<FormDetail> forms = new ArrayList<>();
       JdbcSqlQuery.executeBySplittingOn(instanceIds, (idBatch, ignore) -> {
@@ -416,6 +418,7 @@ public List<FormDetail> getUserAvailableForms(final Collection<String> instanceI
           if (isNotEmpty(userGroupIds)) {
             query.or("id in (select formId from " + GROUP_RIGHTS_TABLENAME + " where rightType='S' and groupId").in(userGroupIds).addSqlPart(")"); }
           query.addSqlPart(")");
+          query.orderBy(orderBy);
           query.execute(r -> {
             forms.add(fetchFormDetail(r));
             return null;
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineException.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineException.java
index 5ef559e796..de744b54f8 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineException.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.model;
 
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineService.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineService.java
index 91ee6bde6a..8f4fcf4d3e 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineService.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/FormsOnlineService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.model;
 
@@ -62,7 +62,7 @@ FormDetail saveForm(FormDetail form,
 
   void unpublishForm(FormPK pk) throws FormsOnlineException;
 
-  List<FormDetail> getAvailableFormsToSend(Collection<String> appIds, String userId)
+  List<FormDetail> getAvailableFormsToSend(Collection<String> appIds, String userId, String orderBy)
       throws FormsOnlineException;
 
   RequestsByStatus getAllUserRequests(String appId, String userId,
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/RequestCriteria.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/RequestCriteria.java
index a761bf4d68..081364ee24 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/RequestCriteria.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/RequestCriteria.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.formsonline.model;
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/RequestPK.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/RequestPK.java
index 5439043f78..4c482c9c91 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/RequestPK.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/RequestPK.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.model;
 
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/RequestValidationCriteria.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/RequestValidationCriteria.java
index d2d683a929..d68ca69ac9 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/RequestValidationCriteria.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/model/RequestValidationCriteria.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.formsonline.model;
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/AbstractFormsOnlineFormUserNotification.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/AbstractFormsOnlineFormUserNotification.java
index 20fa12c399..f71728e5c6 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/AbstractFormsOnlineFormUserNotification.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/AbstractFormsOnlineFormUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.formsonline.notification;
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/AbstractFormsOnlineRequestUserNotification.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/AbstractFormsOnlineRequestUserNotification.java
index 731b8cca3d..9e9f673107 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/AbstractFormsOnlineRequestUserNotification.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/AbstractFormsOnlineRequestUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.notification;
 
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineCanceledRequestUserNotification.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineCanceledRequestUserNotification.java
index e23ca3d9bd..a3e0d206bb 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineCanceledRequestUserNotification.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineCanceledRequestUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.notification;
 
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineInstanceManualUserNotification.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineInstanceManualUserNotification.java
index a5e06b9aec..0f1b4468e0 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineInstanceManualUserNotification.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineInstanceManualUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.formsonline.notification;
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlinePendingValidationRequestUserNotification.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlinePendingValidationRequestUserNotification.java
index 12d31e646f..1809538da4 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlinePendingValidationRequestUserNotification.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlinePendingValidationRequestUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.notification;
 
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineProcessedRequestFollowingUserNotification.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineProcessedRequestFollowingUserNotification.java
index 65568db665..5e361c1c8b 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineProcessedRequestFollowingUserNotification.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineProcessedRequestFollowingUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.notification;
 
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineProcessedRequestOtherValidatorsUserNotification.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineProcessedRequestOtherValidatorsUserNotification.java
index 0ec9981d4e..5dba4a177d 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineProcessedRequestOtherValidatorsUserNotification.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineProcessedRequestOtherValidatorsUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.notification;
 
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineProcessedRequestUserNotification.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineProcessedRequestUserNotification.java
index 875092420d..3b89ebb382 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineProcessedRequestUserNotification.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineProcessedRequestUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.notification;
 
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineUserAlertNotification.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineUserAlertNotification.java
index c92ac0b288..332541b673 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineUserAlertNotification.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineUserAlertNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.notification;
 
diff --git a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineValidationRequestUserNotification.java b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineValidationRequestUserNotification.java
index 607701b4ff..44f2c3d7d0 100644
--- a/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineValidationRequestUserNotification.java
+++ b/formsOnline/formsOnline-library/src/main/java/org/silverpeas/components/formsonline/notification/FormsOnlineValidationRequestUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.notification;
 
diff --git a/formsOnline/formsOnline-library/src/test/java/org/silverpeas/components/formsonline/model/FormDetailTest.java b/formsOnline/formsOnline-library/src/test/java/org/silverpeas/components/formsonline/model/FormDetailTest.java
index d2a40cce6a..7dd58c4345 100644
--- a/formsOnline/formsOnline-library/src/test/java/org/silverpeas/components/formsonline/model/FormDetailTest.java
+++ b/formsOnline/formsOnline-library/src/test/java/org/silverpeas/components/formsonline/model/FormDetailTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.formsonline.model;
diff --git a/formsOnline/formsOnline-library/src/test/java/org/silverpeas/components/formsonline/model/RequestsByStatusTest.java b/formsOnline/formsOnline-library/src/test/java/org/silverpeas/components/formsonline/model/RequestsByStatusTest.java
index e3919da1d2..2ae467e4ff 100644
--- a/formsOnline/formsOnline-library/src/test/java/org/silverpeas/components/formsonline/model/RequestsByStatusTest.java
+++ b/formsOnline/formsOnline-library/src/test/java/org/silverpeas/components/formsonline/model/RequestsByStatusTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.formsonline.model;
diff --git a/formsOnline/formsOnline-war/pom.xml b/formsOnline/formsOnline-war/pom.xml
index 6af402ac89..24039b88cc 100644
--- a/formsOnline/formsOnline-war/pom.xml
+++ b/formsOnline/formsOnline-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>formsonline</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.formsonline</groupId>
diff --git a/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/FormsOnlineIndexer.java b/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/FormsOnlineIndexer.java
index 86a2497c8e..b12f23f20f 100644
--- a/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/FormsOnlineIndexer.java
+++ b/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/FormsOnlineIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.formsonline;
diff --git a/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/control/FormsOnlineSessionController.java b/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/control/FormsOnlineSessionController.java
index acda936271..c42dfeff51 100644
--- a/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/control/FormsOnlineSessionController.java
+++ b/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/control/FormsOnlineSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.control;
 
@@ -262,7 +262,10 @@ public void unpublishForm(String formId) throws FormsOnlineException {
   }
 
   public List<FormDetail> getAvailableFormsToSend() throws FormsOnlineException {
-    return getService().getAvailableFormsToSend(singleton(getComponentId()), getUserId());
+    String orderBy = getOrganisationController().getComponentParameterValue(getComponentId(), "displaySort");
+    orderBy = StringUtil.isDefined(orderBy) ? orderBy: "name asc";
+
+    return getService().getAvailableFormsToSend(singleton(getComponentId()), getUserId(), orderBy);
   }
 
   public void saveRequest(List<FileItem> items, boolean draft) throws FormsOnlineException {
diff --git a/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/control/RequestUIEntity.java b/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/control/RequestUIEntity.java
index 6d9ea49c7c..09fcd68574 100644
--- a/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/control/RequestUIEntity.java
+++ b/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/control/RequestUIEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.formsonline.control;
diff --git a/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/control/TitleHelper.java b/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/control/TitleHelper.java
index e3d71dc725..01a8be9944 100644
--- a/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/control/TitleHelper.java
+++ b/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/control/TitleHelper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.control;
 
diff --git a/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/servlets/FormsOnlineRequestRouter.java b/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/servlets/FormsOnlineRequestRouter.java
index ba9ee40a35..b9b145df9f 100644
--- a/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/servlets/FormsOnlineRequestRouter.java
+++ b/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/servlets/FormsOnlineRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.servlets;
 
@@ -216,8 +216,10 @@ public String getDestination(String function, FormsOnlineSessionController forms
         Form formUpdate = formsOnlineSC.getCurrentEmptyForm();
 
         // call of the JSP with required parameters
+        PagesContext formContext = formsOnlineSC.getFormPageContext();
+        formContext.setCreation(true);
         request.setAttribute("Form", formUpdate);
-        request.setAttribute(FORM_CONTEXT, formsOnlineSC.getFormPageContext());
+        request.setAttribute(FORM_CONTEXT, formContext);
         request.setAttribute("FormDetail", form);
 
         destination = ROOT_DESTINATION + "newFormInstance.jsp";
@@ -229,6 +231,7 @@ public String getDestination(String function, FormsOnlineSessionController forms
         request.setAttribute("UserRequest", userRequest);
         PagesContext formContext = formsOnlineSC.getFormPageContext();
         formContext.setObjectId(userRequest.getId());
+        formContext.setCreation(false);
         request.setAttribute(FORM_CONTEXT, formContext);
 
         destination = ROOT_DESTINATION + "editFormInstance.jsp";
diff --git a/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/servlets/GoToForm.java b/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/servlets/GoToForm.java
index fc01848330..715fd145cb 100644
--- a/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/servlets/GoToForm.java
+++ b/formsOnline/formsOnline-war/src/main/java/org/silverpeas/components/formsonline/servlets/GoToForm.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.formsonline.servlets;
 
diff --git a/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/hierarchicalInfo.tag b/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/hierarchicalInfo.tag
index d4b21e455c..3aa71e05d7 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/hierarchicalInfo.tag
+++ b/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/hierarchicalInfo.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ tag language="java" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/myRequestsByState.tag b/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/myRequestsByState.tag
index 1ebde0c4f9..2b998ac025 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/myRequestsByState.tag
+++ b/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/myRequestsByState.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ tag language="java" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/validation.tag b/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/validation.tag
index 499568b8fd..354dcbed07 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/validation.tag
+++ b/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/validation.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ tag language="java" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/validations.tag b/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/validations.tag
index 940be9ca0b..7687017cb4 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/validations.tag
+++ b/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/validations.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ tag language="java" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/validationsSchemaImage.tag b/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/validationsSchemaImage.tag
index 7af9c7cd48..ff439012d4 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/validationsSchemaImage.tag
+++ b/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/tags/silverpeas/formsOnline/validationsSchemaImage.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ tag language="java" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/web.xml b/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/web.xml
index edfaf7227d..58ad779025 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/web.xml
+++ b/formsOnline/formsOnline-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/editForm.jsp b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/editForm.jsp
index 7b048c85a4..68fd6d05b2 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/editForm.jsp
+++ b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/editForm.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/editFormInstance.jsp b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/editFormInstance.jsp
index 280bcc7283..6777037d86 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/editFormInstance.jsp
+++ b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/editFormInstance.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/formsList.jsp b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/formsList.jsp
index fc5aa210dc..90c118c918 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/formsList.jsp
+++ b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/formsList.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/inbox.jsp b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/inbox.jsp
index 26c495edec..9b0334575d 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/inbox.jsp
+++ b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/inbox.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page import="org.silverpeas.components.formsonline.control.RequestUIEntity" %>
diff --git a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/newFormInstance.jsp b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/newFormInstance.jsp
index ca49c82ee2..5bf91765f8 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/newFormInstance.jsp
+++ b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/newFormInstance.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/preview.jsp b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/preview.jsp
index 73d0020f59..a05f664615 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/preview.jsp
+++ b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/preview.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/styleSheets/formsOnline-print.css b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/styleSheets/formsOnline-print.css
index 417f85f8d6..7fe72eb4c5 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/styleSheets/formsOnline-print.css
+++ b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/styleSheets/formsOnline-print.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://repository.silverpeas.com/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 .ask-by .forms {
   display:block;
diff --git a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/styleSheets/formsOnline.css b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/styleSheets/formsOnline.css
index dcdae644a6..121f76e6ad 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/styleSheets/formsOnline.css
+++ b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/styleSheets/formsOnline.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://repository.silverpeas.com/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 fieldset {
   margin-top: 10px;
diff --git a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/viewInstance.jsp b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/viewInstance.jsp
index e8339de977..fb186af9ea 100644
--- a/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/viewInstance.jsp
+++ b/formsOnline/formsOnline-war/src/main/webapp/formsOnline/jsp/viewInstance.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/formsOnline/pom.xml b/formsOnline/pom.xml
index ef0b81cfc4..b8b0a5bf34 100644
--- a/formsOnline/pom.xml
+++ b/formsOnline/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/forums/forums-configuration/pom.xml b/forums/forums-configuration/pom.xml
index df42ce4d53..de3c0fd153 100644
--- a/forums/forums-configuration/pom.xml
+++ b/forums/forums-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>forums</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.forums</groupId>
diff --git a/forums/forums-configuration/src/main/config/migrations/modules/forums-migration.xml b/forums/forums-configuration/src/main/config/migrations/modules/forums-migration.xml
index a08a1e7075..c6f550e814 100644
--- a/forums/forums-configuration/src/main/config/migrations/modules/forums-migration.xml
+++ b/forums/forums-configuration/src/main/config/migrations/modules/forums-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   -->
 
 
diff --git a/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle.properties b/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle.properties
index 44b966b004..46f8893227 100644
--- a/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle.properties
+++ b/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 forums = Forums
 accueil = Accueil
diff --git a/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle_de.properties b/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle_de.properties
index 2bcf5e2d23..d82b0e7453 100644
--- a/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle_de.properties
+++ b/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 forums = Foren
diff --git a/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle_en.properties b/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle_en.properties
index 46a0465159..fde63f374b 100644
--- a/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle_en.properties
+++ b/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 forums = Forums
 accueil = Homepage
diff --git a/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle_fr.properties b/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle_fr.properties
index 4e92238419..1401846f8a 100644
--- a/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle_fr.properties
+++ b/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/multilang/forumsBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 forums = Forums
 accueil = Accueil
diff --git a/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/settings/forumsIcons.properties b/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/settings/forumsIcons.properties
index fd977431c4..af674a8e9a 100644
--- a/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/settings/forumsIcons.properties
+++ b/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/settings/forumsIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 forums.delete = /util/icons/publicationDelete.gif
 forums.smallDelete = /util/icons/delete.gif
diff --git a/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/settings/forumsMails.properties b/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/settings/forumsMails.properties
index ba9f45a4a5..236074bd21 100644
--- a/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/settings/forumsMails.properties
+++ b/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/settings/forumsMails.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 forums.message.link = /Rforums/{componentId}/searchResult?Type=Message&Id={messageId}
\ No newline at end of file
diff --git a/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/settings/forumsSettings.properties b/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/settings/forumsSettings.properties
index 21d7326e51..d09540939d 100644
--- a/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/settings/forumsSettings.properties
+++ b/forums/forums-configuration/src/main/config/properties/org/silverpeas/forums/settings/forumsSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 beginHour = 8
 endHour = 20
diff --git a/forums/forums-configuration/src/main/config/properties/org/silverpeas/util/logging/forumsLogging.properties b/forums/forums-configuration/src/main/config/properties/org/silverpeas/util/logging/forumsLogging.properties
index 5d9250df18..30da509d77 100644
--- a/forums/forums-configuration/src/main/config/properties/org/silverpeas/util/logging/forumsLogging.properties
+++ b/forums/forums-configuration/src/main/config/properties/org/silverpeas/util/logging/forumsLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/forums/forums-configuration/src/main/config/xmlcomponents/forums.xml b/forums/forums-configuration/src/main/config/xmlcomponents/forums.xml
index 4992250946..53920d9def 100644
--- a/forums/forums-configuration/src/main/config/xmlcomponents/forums.xml
+++ b/forums/forums-configuration/src/main/config/xmlcomponents/forums.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/forums/forums-library/pom.xml b/forums/forums-library/pom.xml
index 12fecad018..9afde28233 100644
--- a/forums/forums-library/pom.xml
+++ b/forums/forums-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>forums</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.forums</groupId>
diff --git a/forums/forums-library/src/integration-test/java/org/silverpeas/components/forums/ForumsInstancePreDestructionIT.java b/forums/forums-library/src/integration-test/java/org/silverpeas/components/forums/ForumsInstancePreDestructionIT.java
index 8769d34e39..fe3365307b 100644
--- a/forums/forums-library/src/integration-test/java/org/silverpeas/components/forums/ForumsInstancePreDestructionIT.java
+++ b/forums/forums-library/src/integration-test/java/org/silverpeas/components/forums/ForumsInstancePreDestructionIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums;
 
diff --git a/forums/forums-library/src/integration-test/java/org/silverpeas/components/forums/test/WarBuilder4Forums.java b/forums/forums-library/src/integration-test/java/org/silverpeas/components/forums/test/WarBuilder4Forums.java
index b743a81514..e8135f067c 100644
--- a/forums/forums-library/src/integration-test/java/org/silverpeas/components/forums/test/WarBuilder4Forums.java
+++ b/forums/forums-library/src/integration-test/java/org/silverpeas/components/forums/test/WarBuilder4Forums.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.test;
 
diff --git a/forums/forums-library/src/integration-test/resources/arquillian.xml b/forums/forums-library/src/integration-test/resources/arquillian.xml
index c14046f2bb..bc5b073b7d 100644
--- a/forums/forums-library/src/integration-test/resources/arquillian.xml
+++ b/forums/forums-library/src/integration-test/resources/arquillian.xml
@@ -1,6 +1,6 @@
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <arquillian xmlns="http://jboss.org/schema/arquillian"
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/ForumsContentManager.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/ForumsContentManager.java
index bdc1c0c2b6..b1df51f528 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/ForumsContentManager.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/ForumsContentManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/ForumsInstancePreDestruction.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/ForumsInstancePreDestruction.java
index b5ed7b1abd..874a07ba23 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/ForumsInstancePreDestruction.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/ForumsInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums;
 
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/ForumsStatistics.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/ForumsStatistics.java
index 26402c73f3..d8f1ae8c3a 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/ForumsStatistics.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/ForumsStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*--- formatted by Jindent 2.1, (www.c-lab.de/~jindent)
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/Forum.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/Forum.java
index a4fe634d40..13baeca391 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/Forum.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/Forum.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.model;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/ForumDetail.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/ForumDetail.java
index fedcbad39e..c83602b3eb 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/ForumDetail.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/ForumDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.model;
 
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/ForumPK.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/ForumPK.java
index f0559578f1..06f23a81a5 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/ForumPK.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/ForumPK.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.model;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/ForumPath.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/ForumPath.java
index 51b6a7fb1b..8477a6f82b 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/ForumPath.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/ForumPath.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.model;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/Message.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/Message.java
index 6ea6c7d5d0..0a96ec4b66 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/Message.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/Message.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.model;
 
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/MessagePK.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/MessagePK.java
index 06a58af163..407228ad3a 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/MessagePK.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/MessagePK.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.model;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/MessagePath.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/MessagePath.java
index 97230ae6d4..a65f727d62 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/MessagePath.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/MessagePath.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.model;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/Moderator.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/Moderator.java
index 51ba254f8d..21bab7fd6a 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/Moderator.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/model/Moderator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.model;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/AbstractForumsForumUserNotification.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/AbstractForumsForumUserNotification.java
index d951eb2793..08a3fc5d48 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/AbstractForumsForumUserNotification.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/AbstractForumsForumUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.notification;
 
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/AbstractForumsMessageUserNotification.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/AbstractForumsMessageUserNotification.java
index 9e61d2f0bc..f13735a26d 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/AbstractForumsMessageUserNotification.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/AbstractForumsMessageUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.notification;
 
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/AbstractForumsUserNotification.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/AbstractForumsUserNotification.java
index 082ebae779..892d6cc547 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/AbstractForumsUserNotification.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/AbstractForumsUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.notification;
 
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsForumSubscriptionUserNotification.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsForumSubscriptionUserNotification.java
index 392aca7f47..bea3c39e24 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsForumSubscriptionUserNotification.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsForumSubscriptionUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.notification;
 
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsMessagePendingValidationUserNotification.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsMessagePendingValidationUserNotification.java
index 8bcf1e3156..9fcf64bfa3 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsMessagePendingValidationUserNotification.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsMessagePendingValidationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.notification;
 
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsMessageSubscriptionUserNotification.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsMessageSubscriptionUserNotification.java
index a57f71d833..30807e7fa3 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsMessageSubscriptionUserNotification.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsMessageSubscriptionUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.notification;
 
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsMessageValidationUserNotification.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsMessageValidationUserNotification.java
index e30fe34074..13edda86ad 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsMessageValidationUserNotification.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/notification/ForumsMessageValidationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.notification;
 
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/DefaultForumService.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/DefaultForumService.java
index 131d51c0a2..c15930e97d 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/DefaultForumService.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/DefaultForumService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.service;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumService.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumService.java
index ef6b15f9c1..e829a81da5 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumService.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.service;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsContributionLocator.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsContributionLocator.java
index 3580dea968..a147fe418b 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsContributionLocator.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsContributionLocator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.service;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsDAO.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsDAO.java
index b3b293a7a0..bb69043a2f 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsDAO.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsDAO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.service;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsException.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsException.java
index 1217d2abe1..363864f8a2 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsException.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.service;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsRuntimeException.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsRuntimeException.java
index 05b3680ad7..84b359b36a 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsRuntimeException.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.service;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsServiceProvider.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsServiceProvider.java
index f79551bece..956b39e166 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsServiceProvider.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/service/ForumsServiceProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.service;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumMessageSubscription.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumMessageSubscription.java
index dcc4f7f2e4..cdb902f47c 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumMessageSubscription.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumMessageSubscription.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.subscription;
 
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumMessageSubscriptionResource.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumMessageSubscriptionResource.java
index e30773b987..1d60fff969 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumMessageSubscriptionResource.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumMessageSubscriptionResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.subscription;
 
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumSubscription.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumSubscription.java
index 5706fe7934..4f9c81eac8 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumSubscription.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumSubscription.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.subscription;
 
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumSubscriptionConstants.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumSubscriptionConstants.java
index 5307b0dc13..3522240439 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumSubscriptionConstants.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumSubscriptionConstants.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.subscription;
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumSubscriptionResource.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumSubscriptionResource.java
index e12736e596..acb8f540e9 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumSubscriptionResource.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumSubscriptionResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.subscription;
 
diff --git a/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumsSubscriptionService.java b/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumsSubscriptionService.java
index 5cb3604be3..c33aacf8a7 100644
--- a/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumsSubscriptionService.java
+++ b/forums/forums-library/src/main/java/org/silverpeas/components/forums/subscription/ForumsSubscriptionService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.subscription;
 
diff --git a/forums/forums-war/pom.xml b/forums/forums-war/pom.xml
index bbdf33770f..a44b30cda5 100644
--- a/forums/forums-war/pom.xml
+++ b/forums/forums-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>forums</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.forums</groupId>
diff --git a/forums/forums-war/src/main/java/org/silverpeas/components/forums/ForumsIndexer.java b/forums/forums-war/src/main/java/org/silverpeas/components/forums/ForumsIndexer.java
index 72e2cb831a..dfd974960f 100644
--- a/forums/forums-war/src/main/java/org/silverpeas/components/forums/ForumsIndexer.java
+++ b/forums/forums-war/src/main/java/org/silverpeas/components/forums/ForumsIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums;
 
diff --git a/forums/forums-war/src/main/java/org/silverpeas/components/forums/ForumsInstanceRoutingMap.java b/forums/forums-war/src/main/java/org/silverpeas/components/forums/ForumsInstanceRoutingMap.java
index d8a50c5d54..671c75dd2a 100644
--- a/forums/forums-war/src/main/java/org/silverpeas/components/forums/ForumsInstanceRoutingMap.java
+++ b/forums/forums-war/src/main/java/org/silverpeas/components/forums/ForumsInstanceRoutingMap.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums;
diff --git a/forums/forums-war/src/main/java/org/silverpeas/components/forums/bean/ForumModeratorBean.java b/forums/forums-war/src/main/java/org/silverpeas/components/forums/bean/ForumModeratorBean.java
index ca2f764f8f..aba1d7201b 100644
--- a/forums/forums-war/src/main/java/org/silverpeas/components/forums/bean/ForumModeratorBean.java
+++ b/forums/forums-war/src/main/java/org/silverpeas/components/forums/bean/ForumModeratorBean.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.bean;
 
diff --git a/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/ForumsSessionController.java b/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/ForumsSessionController.java
index 761fdaefb9..2929cb1192 100644
--- a/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/ForumsSessionController.java
+++ b/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/ForumsSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.control;
 
diff --git a/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/helpers/ForumActionHelper.java b/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/helpers/ForumActionHelper.java
index 2832f21e72..c17f80147f 100644
--- a/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/helpers/ForumActionHelper.java
+++ b/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/helpers/ForumActionHelper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.control.helpers;
 
diff --git a/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/helpers/ForumHelper.java b/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/helpers/ForumHelper.java
index cb36b2457f..df1607cad0 100644
--- a/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/helpers/ForumHelper.java
+++ b/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/helpers/ForumHelper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.control.helpers;
 
diff --git a/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/helpers/ForumListHelper.java b/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/helpers/ForumListHelper.java
index cddd56dfd5..78e93ccd46 100644
--- a/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/helpers/ForumListHelper.java
+++ b/forums/forums-war/src/main/java/org/silverpeas/components/forums/control/helpers/ForumListHelper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.control.helpers;
 
diff --git a/forums/forums-war/src/main/java/org/silverpeas/components/forums/servlets/ForumsRequestRouter.java b/forums/forums-war/src/main/java/org/silverpeas/components/forums/servlets/ForumsRequestRouter.java
index 5e3c9de3a5..e126e95020 100644
--- a/forums/forums-war/src/main/java/org/silverpeas/components/forums/servlets/ForumsRequestRouter.java
+++ b/forums/forums-war/src/main/java/org/silverpeas/components/forums/servlets/ForumsRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.servlets;
 
diff --git a/forums/forums-war/src/main/java/org/silverpeas/components/forums/servlets/ForumsRssServlet.java b/forums/forums-war/src/main/java/org/silverpeas/components/forums/servlets/ForumsRssServlet.java
index cbefded399..09e920f2f6 100644
--- a/forums/forums-war/src/main/java/org/silverpeas/components/forums/servlets/ForumsRssServlet.java
+++ b/forums/forums-war/src/main/java/org/silverpeas/components/forums/servlets/ForumsRssServlet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.servlets;
 
diff --git a/forums/forums-war/src/main/java/org/silverpeas/components/forums/servlets/GoToMessage.java b/forums/forums-war/src/main/java/org/silverpeas/components/forums/servlets/GoToMessage.java
index c8b8728e2b..3708a6d493 100644
--- a/forums/forums-war/src/main/java/org/silverpeas/components/forums/servlets/GoToMessage.java
+++ b/forums/forums-war/src/main/java/org/silverpeas/components/forums/servlets/GoToMessage.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.servlets;
 
diff --git a/forums/forums-war/src/main/java/org/silverpeas/components/forums/subscription/bean/ForumMessageSubscriptionBean.java b/forums/forums-war/src/main/java/org/silverpeas/components/forums/subscription/bean/ForumMessageSubscriptionBean.java
index c49a630a12..8404b9e80d 100644
--- a/forums/forums-war/src/main/java/org/silverpeas/components/forums/subscription/bean/ForumMessageSubscriptionBean.java
+++ b/forums/forums-war/src/main/java/org/silverpeas/components/forums/subscription/bean/ForumMessageSubscriptionBean.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.subscription.bean;
diff --git a/forums/forums-war/src/main/java/org/silverpeas/components/forums/subscription/bean/ForumSubscriptionBean.java b/forums/forums-war/src/main/java/org/silverpeas/components/forums/subscription/bean/ForumSubscriptionBean.java
index 9419519e76..45b5970cfc 100644
--- a/forums/forums-war/src/main/java/org/silverpeas/components/forums/subscription/bean/ForumSubscriptionBean.java
+++ b/forums/forums-war/src/main/java/org/silverpeas/components/forums/subscription/bean/ForumSubscriptionBean.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.subscription.bean;
diff --git a/forums/forums-war/src/main/java/org/silverpeas/components/forums/subscription/bean/ForumsSubscriptionBeanService.java b/forums/forums-war/src/main/java/org/silverpeas/components/forums/subscription/bean/ForumsSubscriptionBeanService.java
index e38783cada..61fe03c6c3 100644
--- a/forums/forums-war/src/main/java/org/silverpeas/components/forums/subscription/bean/ForumsSubscriptionBeanService.java
+++ b/forums/forums-war/src/main/java/org/silverpeas/components/forums/subscription/bean/ForumsSubscriptionBeanService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.forums.subscription.bean;
diff --git a/forums/forums-war/src/main/java/org/silverpeas/components/forums/url/ActionUrl.java b/forums/forums-war/src/main/java/org/silverpeas/components/forums/url/ActionUrl.java
index 04cedfee94..733c0c21b9 100644
--- a/forums/forums-war/src/main/java/org/silverpeas/components/forums/url/ActionUrl.java
+++ b/forums/forums-war/src/main/java/org/silverpeas/components/forums/url/ActionUrl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.forums.url;
 
diff --git a/forums/forums-war/src/main/webapp/WEB-INF/web.xml b/forums/forums-war/src/main/webapp/WEB-INF/web.xml
index 9e6c42eb4e..4c98efe35b 100644
--- a/forums/forums-war/src/main/webapp/WEB-INF/web.xml
+++ b/forums/forums-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/forums/forums-war/src/main/webapp/forums/jsp/categoryManager.jsp b/forums/forums-war/src/main/webapp/forums/jsp/categoryManager.jsp
index 31ed162cc2..cb4f8ab416 100644
--- a/forums/forums-war/src/main/webapp/forums/jsp/categoryManager.jsp
+++ b/forums/forums-war/src/main/webapp/forums/jsp/categoryManager.jsp
@@ -1,6 +1,6 @@
 <%@ page import="org.silverpeas.core.node.model.NodeDetail" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/forums/forums-war/src/main/webapp/forums/jsp/checkForums.jsp b/forums/forums-war/src/main/webapp/forums/jsp/checkForums.jsp
index 3ba27675dc..c66cb949bb 100644
--- a/forums/forums-war/src/main/webapp/forums/jsp/checkForums.jsp
+++ b/forums/forums-war/src/main/webapp/forums/jsp/checkForums.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/forums/forums-war/src/main/webapp/forums/jsp/editForumInfo.jsp b/forums/forums-war/src/main/webapp/forums/jsp/editForumInfo.jsp
index 5e123122c1..8a3c0a634e 100644
--- a/forums/forums-war/src/main/webapp/forums/jsp/editForumInfo.jsp
+++ b/forums/forums-war/src/main/webapp/forums/jsp/editForumInfo.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/forums/forums-war/src/main/webapp/forums/jsp/editMessage.jsp b/forums/forums-war/src/main/webapp/forums/jsp/editMessage.jsp
index 7e8f710086..59ced4f832 100644
--- a/forums/forums-war/src/main/webapp/forums/jsp/editMessage.jsp
+++ b/forums/forums-war/src/main/webapp/forums/jsp/editMessage.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/forums/forums-war/src/main/webapp/forums/jsp/editMessageKeywords.jsp b/forums/forums-war/src/main/webapp/forums/jsp/editMessageKeywords.jsp
index ac9fa2edfe..6c19bf8bef 100644
--- a/forums/forums-war/src/main/webapp/forums/jsp/editMessageKeywords.jsp
+++ b/forums/forums-war/src/main/webapp/forums/jsp/editMessageKeywords.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.components.forums.control.helpers.ForumListHelper"%>
diff --git a/forums/forums-war/src/main/webapp/forums/jsp/main.jsp b/forums/forums-war/src/main/webapp/forums/jsp/main.jsp
index 3046ee2330..13deccdec3 100644
--- a/forums/forums-war/src/main/webapp/forums/jsp/main.jsp
+++ b/forums/forums-war/src/main/webapp/forums/jsp/main.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%
diff --git a/forums/forums-war/src/main/webapp/forums/jsp/modifyMessage.jsp b/forums/forums-war/src/main/webapp/forums/jsp/modifyMessage.jsp
index 3c4cfc827b..05ce7f1001 100644
--- a/forums/forums-war/src/main/webapp/forums/jsp/modifyMessage.jsp
+++ b/forums/forums-war/src/main/webapp/forums/jsp/modifyMessage.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.components.forums.control.helpers.ForumListHelper"%>
diff --git a/forums/forums-war/src/main/webapp/forums/jsp/portlet.jsp b/forums/forums-war/src/main/webapp/forums/jsp/portlet.jsp
index 60a2620c47..b1d72f856c 100644
--- a/forums/forums-war/src/main/webapp/forums/jsp/portlet.jsp
+++ b/forums/forums-war/src/main/webapp/forums/jsp/portlet.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.components.forums.control.helpers.ForumListHelper"%>
diff --git a/forums/forums-war/src/main/webapp/forums/jsp/refuseMessage.jsp b/forums/forums-war/src/main/webapp/forums/jsp/refuseMessage.jsp
index 5202584674..4a62fbfd16 100644
--- a/forums/forums-war/src/main/webapp/forums/jsp/refuseMessage.jsp
+++ b/forums/forums-war/src/main/webapp/forums/jsp/refuseMessage.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.components.forums.control.helpers.ForumListHelper" %>
diff --git a/forums/forums-war/src/main/webapp/forums/jsp/styleSheets/forums.css b/forums/forums-war/src/main/webapp/forums/jsp/styleSheets/forums.css
index 95600830bd..68597e9c72 100644
--- a/forums/forums-war/src/main/webapp/forums/jsp/styleSheets/forums.css
+++ b/forums/forums-war/src/main/webapp/forums/jsp/styleSheets/forums.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */
 
 
diff --git a/forums/forums-war/src/main/webapp/forums/jsp/viewForum.jsp b/forums/forums-war/src/main/webapp/forums/jsp/viewForum.jsp
index 8a19b72b4a..c24928b4db 100644
--- a/forums/forums-war/src/main/webapp/forums/jsp/viewForum.jsp
+++ b/forums/forums-war/src/main/webapp/forums/jsp/viewForum.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%
diff --git a/forums/forums-war/src/main/webapp/forums/jsp/viewMessage.jsp b/forums/forums-war/src/main/webapp/forums/jsp/viewMessage.jsp
index 0ddd1a5593..3021737918 100644
--- a/forums/forums-war/src/main/webapp/forums/jsp/viewMessage.jsp
+++ b/forums/forums-war/src/main/webapp/forums/jsp/viewMessage.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.components.forums.control.helpers.ForumHelper"%>
diff --git a/forums/pom.xml b/forums/pom.xml
index 4e456218ad..023b66da94 100644
--- a/forums/pom.xml
+++ b/forums/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
   
   <groupId>org.silverpeas.components</groupId>
diff --git a/gallery/gallery-configuration/pom.xml b/gallery/gallery-configuration/pom.xml
index 05ce5594a5..1fbb77aeec 100644
--- a/gallery/gallery-configuration/pom.xml
+++ b/gallery/gallery-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>gallery</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.gallery</groupId>
diff --git a/gallery/gallery-configuration/src/main/config/migrations/modules/gallery-migration.xml b/gallery/gallery-configuration/src/main/config/migrations/modules/gallery-migration.xml
index 8682271bac..164f8c7bb8 100644
--- a/gallery/gallery-configuration/src/main/config/migrations/modules/gallery-migration.xml
+++ b/gallery/gallery-configuration/src/main/config/migrations/modules/gallery-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify it under the terms of the
   ~ GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -10,14 +10,14 @@
   ~ redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
   ~ applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
   ~ text describing the FLOSS exception, and it is also available here:
-  ~ "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  ~ "https://www.silverpeas.org/legal/floss_exception.html"
   ~
   ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
   ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   ~ Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License along with this program.
-  ~ If not, see <http://www.gnu.org/licenses/>.
+  ~ If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <migration module="gallery"
diff --git a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle.properties b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle.properties
index cbf1f7f972..7881f94786 100644
--- a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle.properties
+++ b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 gallery.addAlbum = Cr\u00e9er un album
 gallery.addSubAlbum = Cr\u00e9er un sous album
diff --git a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle_de.properties b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle_de.properties
index dbc410cf83..b076f621cd 100644
--- a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle_de.properties
+++ b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 gallery.addAlbum = Ein Album hinzuf\u00fcgen
 gallery.addSubAlbum = Ein Sub-Album hinzuf\u00fcgen
diff --git a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle_en.properties b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle_en.properties
index cab159cc12..59e8557a68 100644
--- a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle_en.properties
+++ b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 gallery.addAlbum = Create an album
 gallery.addSubAlbum = Create a sub album
diff --git a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle_fr.properties b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle_fr.properties
index 9d8073517f..fcd990b69f 100644
--- a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle_fr.properties
+++ b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/galleryBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 gallery.addAlbum = Cr\u00e9er un album
 gallery.addSubAlbum = Cr\u00e9er un sous album
diff --git a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle.properties b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle.properties
index 4da87c10fa..ac79de570f 100644
--- a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle.properties
+++ b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 gallery.model = Mod\u00E8le
 gallery.dataTime = Date de prise de vue
diff --git a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle_de.properties b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle_de.properties
index 683e57c961..d4b0909b24 100644
--- a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle_de.properties
+++ b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle_de.properties
@@ -1 +1 @@
-#
# Copyright (C) 2000 - 2022 Silverpeas
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# As a special exception to the terms and conditions of version 3.0 of
# the GPL, you may redistribute this Program in connection with Free/Libre
# Open Source Software ("FLOSS") applications as described in Silverpeas's
# FLOSS exception.  You should have received a copy of the text describing
# the FLOSS exception, and it is also available here:
# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
gallery.model = Modell
gallery.dataTime = Schnapsdatum
gallery.xResolution = Horizontale Aufl\u00F6sung
gallery.yResolution = Vertikale Aufl\u00F6sung
gallery.resolutionUnit = EinHeit Aufl\u00F6sung
gallery.winAuthor = (Windows) Autor
gallery.winComment = (Windows) Kommentare
gallery.winKeywords = (Windows) Schl\u00FCsselw\u00F6rter
gallery.winSubject = (Windows) Subjekt
gallery.winTitle = (Windows) Titel
gallery.iptcCredit = Kredit
gallery.iptcAuthor = Autor
gallery.iptc592 = Sch\u00F6pfer
gallery.iptc597 = Titel des Autors
gallery.iptc632 = Legende
gallery.iptc527 = Kategorie
gallery.iptc602 = Stadt
gallery.iptc628 = Copyright
gallery.iptc613 = Land
gallery.iptc567 = Aufnahmedatum
gallery.iptc617 = Titel
gallery.iptc537 = Schl\u00FCsselw\u00F6rter
gallery.iptc517 = Objekt
gallery.iptc615 = Sendung Reference
gallery.iptc577 = Anwendung
gallery.iptc607 = Provinz oder Staat
gallery.iptc512 = Version
gallery.iptc542 = Erscheinungsdatum
gallery.iptc547 = R\u00FCckfallzeit
gallery.iptc627 = Quelle
gallery.iptc552 = Besondere Anweisungen
gallery.iptc532 = Schwarz wei\u00DF Referenz
gallery.iptc572 = Zeit erstellt
gallery.iptc522 = Priorit\u00E4t
\ No newline at end of file
+#
# Copyright (C) 2000 - 2024 Silverpeas
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# As a special exception to the terms and conditions of version 3.0 of
# the GPL, you may redistribute this Program in connection with Free/Libre
# Open Source Software ("FLOSS") applications as described in Silverpeas's
# FLOSS exception.  You should have received a copy of the text describing
# the FLOSS exception, and it is also available here:
# "https://www.silverpeas.org/legal/floss_exception.html"
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.
#
gallery.model = Modell
gallery.dataTime = Schnapsdatum
gallery.xResolution = Horizontale Aufl\u00F6sung
gallery.yResolution = Vertikale Aufl\u00F6sung
gallery.resolutionUnit = EinHeit Aufl\u00F6sung
gallery.winAuthor = (Windows) Autor
gallery.winComment = (Windows) Kommentare
gallery.winKeywords = (Windows) Schl\u00FCsselw\u00F6rter
gallery.winSubject = (Windows) Subjekt
gallery.winTitle = (Windows) Titel
gallery.iptcCredit = Kredit
gallery.iptcAuthor = Autor
gallery.iptc592 = Sch\u00F6pfer
gallery.iptc597 = Titel des Autors
gallery.iptc632 = Legende
gallery.iptc527 = Kategorie
gallery.iptc602 = Stadt
gallery.iptc628 = Copyright
gallery.iptc613 = Land
gallery.iptc567 = Aufnahmedatum
gallery.iptc617 = Titel
gallery.iptc537 = Schl\u00FCsselw\u00F6rter
gallery.iptc517 = Objekt
gallery.iptc615 = Sendung Reference
gallery.iptc577 = Anwendung
gallery.iptc607 = Provinz oder Staat
gallery.iptc512 = Version
gallery.iptc542 = Erscheinungsdatum
gallery.iptc547 = R\u00FCckfallzeit
gallery.iptc627 = Quelle
gallery.iptc552 = Besondere Anweisungen
gallery.iptc532 = Schwarz wei\u00DF Referenz
gallery.iptc572 = Zeit erstellt
gallery.iptc522 = Priorit\u00E4t
\ No newline at end of file
diff --git a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle_en.properties b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle_en.properties
index 7ed097b60d..82f86ab707 100644
--- a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle_en.properties
+++ b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 gallery.model = Model
 gallery.dataTime = Shot date
diff --git a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle_fr.properties b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle_fr.properties
index 4da87c10fa..ac79de570f 100644
--- a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle_fr.properties
+++ b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/multilang/metadataBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 gallery.model = Mod\u00E8le
 gallery.dataTime = Date de prise de vue
diff --git a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/galleryIcons.properties b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/galleryIcons.properties
index 4bc0e3b407..64786ea646 100644
--- a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/galleryIcons.properties
+++ b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/galleryIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 gallery.mandatory = /util/icons/mandatoryField.gif
 
diff --git a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/gallerySettings.properties b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/gallerySettings.properties
index bb8725ab4b..6a40ceeefa 100644
--- a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/gallerySettings.properties
+++ b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/gallerySettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 imagesSubDirectory = image
 
diff --git a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/metadataSettings.properties b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/metadataSettings.properties
index 73d7a0947c..340fb812a2 100644
--- a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/metadataSettings.properties
+++ b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/metadataSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 imagesSubDirectory = image
 
diff --git a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/metadataSettings_galleryXXX.properties b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/metadataSettings_galleryXXX.properties
index 33df942d74..dc2a78919f 100644
--- a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/metadataSettings_galleryXXX.properties
+++ b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/gallery/settings/metadataSettings_galleryXXX.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 display = IPTC_11,IPTC_8
diff --git a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/util/logging/galleryLogging.properties b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/util/logging/galleryLogging.properties
index e160d86b00..09d51b604d 100644
--- a/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/util/logging/galleryLogging.properties
+++ b/gallery/gallery-configuration/src/main/config/properties/org/silverpeas/util/logging/galleryLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/gallery/gallery-configuration/src/main/config/xmlcomponents/gallery.xml b/gallery/gallery-configuration/src/main/config/xmlcomponents/gallery.xml
index c6135f9aee..dead8852b6 100644
--- a/gallery/gallery-configuration/src/main/config/xmlcomponents/gallery.xml
+++ b/gallery/gallery-configuration/src/main/config/xmlcomponents/gallery.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,10 +21,12 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
-<WAComponent xmlns="http://silverpeas.org/xml/ns/component" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://silverpeas.org/xml/ns/component http://www.silverpeas.org/xsd/component.xsd">
+<WAComponent xmlns="http://silverpeas.org/xml/ns/component"
+             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+             xsi:schemaLocation="http://silverpeas.org/xml/ns/component https://www.silverpeas.org/xsd/component.xsd">
   <name>gallery</name>
   <label>
     <message lang="fr">Médiathèque</message>
@@ -315,9 +317,9 @@
         <parameter>
           <name>download</name>
           <label>
-            <message lang="fr">Original téléchargeable</message>
-            <message lang="en">Enable download of original media</message>
-            <message lang="de">Aktivieren Sie des Download der Original-Medien</message>
+            <message lang="fr">Original téléchargeable pour les lecteurs et les contributeurs</message>
+            <message lang="en">Enable download of original media for the readers and the contributors</message>
+            <message lang="de">Ermöglichung des Downloads von Originalmedien für die Leser und die Beiträger</message>
           </label>
           <order>13</order>
           <mandatory>false</mandatory>
@@ -325,9 +327,9 @@
           <type>checkbox</type>
           <updatable>always</updatable>
           <help>
-            <message lang="fr">Si ce paramètre est activé, les médias seront téléchargeables, par defaut, dans leur format original. Ce paramètre pourra être changé à tout moment sur chaque média.</message>
-            <message lang="en">If this parameter is enabled, original media will be downloadable.</message>
-            <message lang="de">Wenn dieser Parameter aktiviert ist, können Original-Medien herunter geladen werden</message>
+            <message lang="fr">Si ce paramètre est activé, le format original des médias sera téléchargeable aussi par les lecteurs et les contributeurs. Ce paramètre pourra être changé à tout moment sur chaque média.</message>
+            <message lang="en">If this parameter is enabled, original media will be also downloadable by the readers and the contributors. This parameter can be changed at any time on each media.</message>
+            <message lang="de">Wenn dieser Parameter aktiviert ist, die Originalmedien auch von den Lesern und Mitwirkenden herunterladbar werden. Dieser Parameter kann jederzeit auf jedem Medium geändert werden..</message>
           </help>
         </parameter>
         <parameter>
@@ -660,4 +662,4 @@
       </help>
     </parameter>
   </parameters>
-</WAComponent>
\ No newline at end of file
+</WAComponent>
diff --git a/gallery/gallery-library/pom.xml b/gallery/gallery-library/pom.xml
index f829ae629f..eea8023862 100644
--- a/gallery/gallery-library/pom.xml
+++ b/gallery/gallery-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>gallery</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.gallery</groupId>
diff --git a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/BaseGalleryIT.java b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/BaseGalleryIT.java
index 9b6151db68..2b81e65952 100644
--- a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/BaseGalleryIT.java
+++ b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/BaseGalleryIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery;
 
diff --git a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/GalleryWarBuilder.java b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/GalleryWarBuilder.java
index 7be1fedd4b..49620557e4 100644
--- a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/GalleryWarBuilder.java
+++ b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/GalleryWarBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery;
 
diff --git a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/dao/MediaDaoIT.java b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/dao/MediaDaoIT.java
index 0c2df98014..f6227ec135 100644
--- a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/dao/MediaDaoIT.java
+++ b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/dao/MediaDaoIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.dao;
 
diff --git a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/image/MetadataExtractorIT.java b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/image/MetadataExtractorIT.java
index 681adf22a0..45c7d92f0a 100644
--- a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/image/MetadataExtractorIT.java
+++ b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/image/MetadataExtractorIT.java
@@ -1,6 +1,6 @@
 
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.image;
 
diff --git a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/AbstractMediaIT.java b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/AbstractMediaIT.java
index 26c3269ac6..a3c2b120a0 100644
--- a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/AbstractMediaIT.java
+++ b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/AbstractMediaIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/InternalMediaIT.java b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/InternalMediaIT.java
index 6d2333a697..c1dd5fe124 100644
--- a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/InternalMediaIT.java
+++ b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/InternalMediaIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/PhotoIT.java b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/PhotoIT.java
index 5b49b61f2c..4f0b6d00b1 100644
--- a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/PhotoIT.java
+++ b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/PhotoIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/SoundIT.java b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/SoundIT.java
index edf6c73793..677ef6d93b 100644
--- a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/SoundIT.java
+++ b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/SoundIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/StreamingIT.java b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/StreamingIT.java
index 997efd428f..2cca784540 100644
--- a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/StreamingIT.java
+++ b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/StreamingIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/VideoIT.java b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/VideoIT.java
index 28a50a6821..3b4850103a 100644
--- a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/VideoIT.java
+++ b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/model/VideoIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/stub/SessionManagementStub.java b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/stub/SessionManagementStub.java
index a2cc946a9a..1b73a0abea 100644
--- a/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/stub/SessionManagementStub.java
+++ b/gallery/gallery-library/src/integration-test/java/org/silverpeas/components/gallery/stub/SessionManagementStub.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public Licen
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  *
  */
 
diff --git a/gallery/gallery-library/src/integration-test/resources/arquillian.xml b/gallery/gallery-library/src/integration-test/resources/arquillian.xml
index c14046f2bb..bc5b073b7d 100644
--- a/gallery/gallery-library/src/integration-test/resources/arquillian.xml
+++ b/gallery/gallery-library/src/integration-test/resources/arquillian.xml
@@ -1,6 +1,6 @@
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <arquillian xmlns="http://jboss.org/schema/arquillian"
diff --git a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/galleryBundle.properties b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/galleryBundle.properties
index 299c7b8128..9da0750522 100644
--- a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/galleryBundle.properties
+++ b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/galleryBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 gallery.addAlbum = Cr\u00e9er un album
 gallery.addSubAlbum = Cr\u00e9er un sous album
diff --git a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/metadataBundle.properties b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/metadataBundle.properties
index dc8becc74d..18287894a7 100644
--- a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/metadataBundle.properties
+++ b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/metadataBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 gallery.model = Mod\u00E8le
 gallery.dataTime = Date de prise de vue
diff --git a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/metadataBundle_en.properties b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/metadataBundle_en.properties
index 52065ddfb8..5eaedc43e4 100644
--- a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/metadataBundle_en.properties
+++ b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/metadataBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 gallery.model = Model
 gallery.dataTime = Shot date
diff --git a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/metadataBundle_fr.properties b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/metadataBundle_fr.properties
index dc8becc74d..18287894a7 100644
--- a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/metadataBundle_fr.properties
+++ b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/multilang/metadataBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 gallery.model = Mod\u00E8le
 gallery.dataTime = Date de prise de vue
diff --git a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/settings/gallerySettings.properties b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/settings/gallerySettings.properties
index 30afee9ede..e454ac7959 100644
--- a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/settings/gallerySettings.properties
+++ b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/settings/gallerySettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 imagesSubDirectory = image
 
diff --git a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/settings/metadataSettings.properties b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/settings/metadataSettings.properties
index 8f4b293bea..f64ebd7fd3 100644
--- a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/settings/metadataSettings.properties
+++ b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/settings/metadataSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 imagesSubDirectory = image
 
diff --git a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/settings/metadataSettings_gallery52.properties b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/settings/metadataSettings_gallery52.properties
index db044f1e8f..4c1b67f746 100644
--- a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/settings/metadataSettings_gallery52.properties
+++ b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/gallery/settings/metadataSettings_gallery52.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 imagesSubDirectory = image
 display=METADATA_1,METADATA_2,METADATA_3,METADATA_4,METADATA_5,METADATA_6,METADATA_7,IPTC_8,IPTC_9,IPTC_10,IPTC_11,IPTC_12,IPTC_13,IPTC_14,IPTC_15,IPTC_16,IPTC_17,IPTC_18,IPTC_19,IPTC_20,IPTC_21,IPTC_22,IPTC_23,IPTC_24,IPTC_25,IPTC_26,IPTC_27,IPTC_28,IPTC_29,IPTC_30,IPTC_31
diff --git a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/general.properties b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/general.properties
index 80c4150651..d2b4084083 100644
--- a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/general.properties
+++ b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/general.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 ApplicationURL=/silverpeas/
 
diff --git a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/media/streaming.properties b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/media/streaming.properties
index 37d923c01b..0423f99704 100644
--- a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/media/streaming.properties
+++ b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/media/streaming.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 streaming.provider.handledIds = youtube,vimeo,dailymotion,soundcloud
diff --git a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/publication/publicationSettings.properties b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/publication/publicationSettings.properties
index 81db8e279e..c39af6a3b6 100644
--- a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/publication/publicationSettings.properties
+++ b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/publication/publicationSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 attachmentsSubDirectory = attachments
 imagesSubDirectory = images
diff --git a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/util/attachment/mime_types.properties b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/util/attachment/mime_types.properties
index d20b0f0bcf..30b61173cd 100644
--- a/gallery/gallery-library/src/integration-test/resources/org/silverpeas/util/attachment/mime_types.properties
+++ b/gallery/gallery-library/src/integration-test/resources/org/silverpeas/util/attachment/mime_types.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception. You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
 #
 bz2  application/x-bzip
 tar.bz2 application/x-bzip
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryComponentSettings.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryComponentSettings.java
index e804983a44..616241769f 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryComponentSettings.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryComponentSettings.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryContentManager.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryContentManager.java
index b978237f1a..432771a347 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryContentManager.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryContentManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryGlobalSilverpeasContentProcessor.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryGlobalSilverpeasContentProcessor.java
index 8ac8cd4697..ff42168e22 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryGlobalSilverpeasContentProcessor.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryGlobalSilverpeasContentProcessor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryInstancePostConstruction.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryInstancePostConstruction.java
index 146c875b60..bfe579dce4 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryInstancePostConstruction.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryStatistics.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryStatistics.java
index b7250dab1f..36e21e9faa 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryStatistics.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/GalleryStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/MediaUtil.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/MediaUtil.java
index cd60107d77..27c5007c5f 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/MediaUtil.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/MediaUtil.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/GalleryResourceURIs.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/GalleryResourceURIs.java
index 85a9668ddb..e8f9817738 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/GalleryResourceURIs.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/GalleryResourceURIs.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.constant;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/MediaMimeType.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/MediaMimeType.java
index 64436ed05d..d89a48e97d 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/MediaMimeType.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/MediaMimeType.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.constant;
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/MediaResolution.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/MediaResolution.java
index 349878d9e0..09ae44d80d 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/MediaResolution.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/MediaResolution.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.constant;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/MediaType.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/MediaType.java
index ff7cf42117..065b855788 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/MediaType.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/constant/MediaType.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.constant;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/MediaDAO.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/MediaDAO.java
index 1b9a2c7692..fbef27573b 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/MediaDAO.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/MediaDAO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.dao;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/MediaOrderSQLQueryBuilder.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/MediaOrderSQLQueryBuilder.java
index 28fb18f1e1..eb1d5d023c 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/MediaOrderSQLQueryBuilder.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/MediaOrderSQLQueryBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.dao;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/MediaSQLQueryBuilder.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/MediaSQLQueryBuilder.java
index 3b97af023e..676c4c0279 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/MediaSQLQueryBuilder.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/MediaSQLQueryBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.dao;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/OrderDAO.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/OrderDAO.java
index 41f07ade75..0301133622 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/OrderDAO.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/OrderDAO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.dao;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/PhotoDAO.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/PhotoDAO.java
index f16f011a3e..69a8b358e4 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/PhotoDAO.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/dao/PhotoDAO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.dao;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/AbstractMediaDataDelegate.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/AbstractMediaDataDelegate.java
index 99de9c47f2..27a2119fcf 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/AbstractMediaDataDelegate.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/AbstractMediaDataDelegate.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.delegate;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/GalleryPasteDelegate.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/GalleryPasteDelegate.java
index 062b7153e1..ae5e7fd7fa 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/GalleryPasteDelegate.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/GalleryPasteDelegate.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.delegate;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/MediaDataCreateDelegate.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/MediaDataCreateDelegate.java
index c6bc58a36f..6656611df6 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/MediaDataCreateDelegate.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/MediaDataCreateDelegate.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.delegate;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/MediaDataUpdateDelegate.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/MediaDataUpdateDelegate.java
index cde13c6303..1278fb5bdc 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/MediaDataUpdateDelegate.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/delegate/MediaDataUpdateDelegate.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.delegate;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/AbstractMediaMetadataExtractor.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/AbstractMediaMetadataExtractor.java
index 9a0709fbbd..c7e31fc4ed 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/AbstractMediaMetadataExtractor.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/AbstractMediaMetadataExtractor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/DrewMediaMetadataExtractor.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/DrewMediaMetadataExtractor.java
index 1f2d7b4e35..4834b7d33f 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/DrewMediaMetadataExtractor.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/DrewMediaMetadataExtractor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/ExifProperty.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/ExifProperty.java
index 2cb42c3c9f..6ec53218d1 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/ExifProperty.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/ExifProperty.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/IptcProperty.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/IptcProperty.java
index 232e038ded..4a11a3de07 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/IptcProperty.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/IptcProperty.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/MediaMetadataException.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/MediaMetadataException.java
index 62702b87e3..42724c9db9 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/MediaMetadataException.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/MediaMetadataException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/MediaMetadataExtractor.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/MediaMetadataExtractor.java
index 001281f72a..a82d009ccd 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/MediaMetadataExtractor.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/media/MediaMetadataExtractor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/AlbumDetail.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/AlbumDetail.java
index 64c22ca8ed..10b38318c2 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/AlbumDetail.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/AlbumDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/AlbumMedia.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/AlbumMedia.java
index b487f85392..4d1b041204 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/AlbumMedia.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/AlbumMedia.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.model;
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/GalleryRuntimeException.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/GalleryRuntimeException.java
index c6afc00546..cc63e95d05 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/GalleryRuntimeException.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/GalleryRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/InternalMedia.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/InternalMedia.java
index 7b6492a594..80d0472eca 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/InternalMedia.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/InternalMedia.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Media.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Media.java
index 397ad4fa53..1e263a6798 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Media.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Media.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaCriteria.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaCriteria.java
index c81ab6da1d..dd379f985e 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaCriteria.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaCriteria.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaCriteriaProcessor.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaCriteriaProcessor.java
index 75e40332f8..5bbd074332 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaCriteriaProcessor.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaCriteriaProcessor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaLogicalComparator.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaLogicalComparator.java
index 435e396022..9bc29ec106 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaLogicalComparator.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaLogicalComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaOrderCriteria.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaOrderCriteria.java
index 4eba6f7205..5e04d3dfe8 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaOrderCriteria.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaOrderCriteria.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaOrderCriteriaProcessor.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaOrderCriteriaProcessor.java
index feb449efdb..3ffa38ec84 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaOrderCriteriaProcessor.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaOrderCriteriaProcessor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaPK.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaPK.java
index faef25a7e7..ec75144b8e 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaPK.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaPK.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaSelection.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaSelection.java
index 4678b59123..b9ff7d0549 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaSelection.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaSelection.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaWithStatus.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaWithStatus.java
index 0b900157f4..2ddc121ac9 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaWithStatus.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MediaWithStatus.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MetaData.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MetaData.java
index 0a7e64c422..6f73ae23a1 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MetaData.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/MetaData.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Order.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Order.java
index ffac8aa8df..1ebea5df23 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Order.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Order.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/OrderRow.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/OrderRow.java
index cb87312e48..d3dc2e3f5d 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/OrderRow.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/OrderRow.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/OrderRowStatus.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/OrderRowStatus.java
index 2389237fd1..dc440f56dc 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/OrderRowStatus.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/OrderRowStatus.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Photo.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Photo.java
index b7cb518360..25695a033d 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Photo.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Photo.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Sound.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Sound.java
index 594e04b7cb..a86792d04c 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Sound.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Sound.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Streaming.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Streaming.java
index 7f4c0d1573..419835ac0b 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Streaming.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Streaming.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Video.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Video.java
index 1edfdd85aa..aaa1bec457 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Video.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/model/Video.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/AlbumMediaEvent.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/AlbumMediaEvent.java
index 13e9230fe2..8ffbfa8ade 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/AlbumMediaEvent.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/AlbumMediaEvent.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.notification;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/AlbumMediaEventListener.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/AlbumMediaEventListener.java
index cc335278b0..920a719f83 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/AlbumMediaEventListener.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/AlbumMediaEventListener.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.notification;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/AlbumMediaEventNotifier.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/AlbumMediaEventNotifier.java
index 4e839ab8a4..ca6cb12937 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/AlbumMediaEventNotifier.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/AlbumMediaEventNotifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.notification;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/AbstractGalleryAlbumUserNotification.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/AbstractGalleryAlbumUserNotification.java
index 0581940284..bd8fd1e833 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/AbstractGalleryAlbumUserNotification.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/AbstractGalleryAlbumUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.notification.user;
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/AbstractGalleryUserNotification.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/AbstractGalleryUserNotification.java
index 35808d305d..ad9a651830 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/AbstractGalleryUserNotification.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/AbstractGalleryUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.notification.user;
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/AlbumMediaNotificationManager.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/AlbumMediaNotificationManager.java
index 8f18b7d021..8975af4504 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/AlbumMediaNotificationManager.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/AlbumMediaNotificationManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.notification.user;
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/GalleryAlbumMediaSubscriptionNotificationBuilder.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/GalleryAlbumMediaSubscriptionNotificationBuilder.java
index d1523dcb92..61963e6406 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/GalleryAlbumMediaSubscriptionNotificationBuilder.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/GalleryAlbumMediaSubscriptionNotificationBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.notification.user;
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/GalleryUserAlertNotification.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/GalleryUserAlertNotification.java
index ac3ea932dd..01e00b38f9 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/GalleryUserAlertNotification.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/notification/user/GalleryUserAlertNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.notification.user;
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/AbstractGalleryDataProcess.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/AbstractGalleryDataProcess.java
index 8ca8731eb7..a7eeb12058 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/AbstractGalleryDataProcess.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/AbstractGalleryDataProcess.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.process;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/AbstractGalleryFileProcess.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/AbstractGalleryFileProcess.java
index 991cd9e9e8..862c347e92 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/AbstractGalleryFileProcess.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/AbstractGalleryFileProcess.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.process;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/GalleryProcessManagement.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/GalleryProcessManagement.java
index 81020ba533..fdeb49efab 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/GalleryProcessManagement.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/GalleryProcessManagement.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.process;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryCreateMediaDataProcess.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryCreateMediaDataProcess.java
index 4f8feaa4a8..9731cf348f 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryCreateMediaDataProcess.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryCreateMediaDataProcess.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.process.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryCreateMediaFileProcess.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryCreateMediaFileProcess.java
index 7a82f339bf..875c822eb5 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryCreateMediaFileProcess.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryCreateMediaFileProcess.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.process.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryDeindexMediaDataProcess.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryDeindexMediaDataProcess.java
index 06dfbf62a5..bc2fe51c84 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryDeindexMediaDataProcess.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryDeindexMediaDataProcess.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.process.media;
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryDeleteMediaDataProcess.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryDeleteMediaDataProcess.java
index 33373088ac..139fb369d1 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryDeleteMediaDataProcess.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryDeleteMediaDataProcess.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.process.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryDeleteMediaFileProcess.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryDeleteMediaFileProcess.java
index 0495f17d90..8ec67d4374 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryDeleteMediaFileProcess.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryDeleteMediaFileProcess.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.process.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryIndexMediaDataProcess.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryIndexMediaDataProcess.java
index 408f08492a..fc30ad85e7 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryIndexMediaDataProcess.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryIndexMediaDataProcess.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.process.media;
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryLoadMetaDataProcess.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryLoadMetaDataProcess.java
index 4c6840a296..b6d4c10d36 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryLoadMetaDataProcess.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryLoadMetaDataProcess.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.process.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryPasteMediaDataProcess.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryPasteMediaDataProcess.java
index d7f8d85eab..74e382d737 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryPasteMediaDataProcess.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryPasteMediaDataProcess.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.process.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryPasteMediaFileProcess.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryPasteMediaFileProcess.java
index 36364c4c28..1b58d5cae5 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryPasteMediaFileProcess.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryPasteMediaFileProcess.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.process.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryUpdateMediaDataProcess.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryUpdateMediaDataProcess.java
index 77ecffd954..cadc4fedeb 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryUpdateMediaDataProcess.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryUpdateMediaDataProcess.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.process.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryUpdateMediaFileProcess.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryUpdateMediaFileProcess.java
index 9510436341..0e03804a63 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryUpdateMediaFileProcess.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/process/media/GalleryUpdateMediaFileProcess.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.process.media;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/DefaultGalleryService.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/DefaultGalleryService.java
index bf4a4bfcd2..303b1da7dd 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/DefaultGalleryService.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/DefaultGalleryService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.service;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/GalleryInitialize.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/GalleryInitialize.java
index 6071220eaf..2865c43428 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/GalleryInitialize.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/GalleryInitialize.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.service;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/GalleryService.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/GalleryService.java
index 25f016e7ec..be1ad696b3 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/GalleryService.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/GalleryService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.service;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/MediaServiceProvider.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/MediaServiceProvider.java
index 62c8be7954..609b688951 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/MediaServiceProvider.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/MediaServiceProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.service;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/ScheduledAlertUser.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/ScheduledAlertUser.java
index 81d0b16274..da26a18979 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/ScheduledAlertUser.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/ScheduledAlertUser.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.service;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/ScheduledDeleteOrder.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/ScheduledDeleteOrder.java
index 78824c687b..a0a96a8128 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/ScheduledDeleteOrder.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/service/ScheduledDeleteOrder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.service;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/socialnetwork/SocialGalleryMedia.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/socialnetwork/SocialGalleryMedia.java
index 3979370b46..3f12404efb 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/socialnetwork/SocialGalleryMedia.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/socialnetwork/SocialGalleryMedia.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have recieved a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.socialnetwork;
 
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/socialnetwork/SocialGalleryMediaComment.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/socialnetwork/SocialGalleryMediaComment.java
index 20c4e5e2b9..3a48df3440 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/socialnetwork/SocialGalleryMediaComment.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/socialnetwork/SocialGalleryMediaComment.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.socialnetwork;
diff --git a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/socialnetwork/SocialInformationGallery.java b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/socialnetwork/SocialInformationGallery.java
index e766d69da5..095978e0db 100644
--- a/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/socialnetwork/SocialInformationGallery.java
+++ b/gallery/gallery-library/src/main/java/org/silverpeas/components/gallery/socialnetwork/SocialInformationGallery.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have recieved a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.socialnetwork;
 
diff --git a/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaDefinitionTest.java b/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaDefinitionTest.java
index 300e4f4370..3229589546 100644
--- a/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaDefinitionTest.java
+++ b/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaDefinitionTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.constant;
diff --git a/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaMimeTypeTest.java b/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaMimeTypeTest.java
index 5eceaafb02..916c9932bb 100644
--- a/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaMimeTypeTest.java
+++ b/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaMimeTypeTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.constant;
diff --git a/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaResolutionTest.java b/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaResolutionTest.java
index 78b23f0604..19d9c83656 100644
--- a/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaResolutionTest.java
+++ b/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaResolutionTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.constant;
diff --git a/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaTypeTest.java b/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaTypeTest.java
index 765386124b..3ddcc939dd 100644
--- a/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaTypeTest.java
+++ b/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/constant/MediaTypeTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.constant;
 
diff --git a/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/model/MediaTest.java b/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/model/MediaTest.java
index cf01fe6ad4..add1825274 100644
--- a/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/model/MediaTest.java
+++ b/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/model/MediaTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.model;
 
diff --git a/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/notification/user/AlbumMediaNotificationManagerTest.java b/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/notification/user/AlbumMediaNotificationManagerTest.java
index 6d18d464c4..825a8e3b19 100644
--- a/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/notification/user/AlbumMediaNotificationManagerTest.java
+++ b/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/notification/user/AlbumMediaNotificationManagerTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.notification.user;
diff --git a/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/notification/user/GalleryAlbumMediaSubscriptionNotificationBuilderTest.java b/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/notification/user/GalleryAlbumMediaSubscriptionNotificationBuilderTest.java
index 765ac3668a..a5b4c441e5 100644
--- a/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/notification/user/GalleryAlbumMediaSubscriptionNotificationBuilderTest.java
+++ b/gallery/gallery-library/src/test/java/org/silverpeas/components/gallery/notification/user/GalleryAlbumMediaSubscriptionNotificationBuilderTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.notification.user;
diff --git a/gallery/gallery-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer b/gallery/gallery-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
index fc51b7e4fd..02b5b225ce 100644
--- a/gallery/gallery-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
+++ b/gallery/gallery-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception. You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 org.silverpeas.core.test.TestBeanContainer
\ No newline at end of file
diff --git a/gallery/gallery-library/src/test/resources/maven.properties b/gallery/gallery-library/src/test/resources/maven.properties
index b925b1beb3..e144ff8c81 100644
--- a/gallery/gallery-library/src/test/resources/maven.properties
+++ b/gallery/gallery-library/src/test/resources/maven.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 # To change this template, choose Tools | Templates
 # and open the template in the editor.
diff --git a/gallery/gallery-library/src/test/resources/org/silverpeas/gallery/settings/gallerySettings.properties b/gallery/gallery-library/src/test/resources/org/silverpeas/gallery/settings/gallerySettings.properties
index 30afee9ede..e454ac7959 100644
--- a/gallery/gallery-library/src/test/resources/org/silverpeas/gallery/settings/gallerySettings.properties
+++ b/gallery/gallery-library/src/test/resources/org/silverpeas/gallery/settings/gallerySettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 imagesSubDirectory = image
 
diff --git a/gallery/gallery-library/src/test/resources/org/silverpeas/general.properties b/gallery/gallery-library/src/test/resources/org/silverpeas/general.properties
index 80c4150651..d2b4084083 100644
--- a/gallery/gallery-library/src/test/resources/org/silverpeas/general.properties
+++ b/gallery/gallery-library/src/test/resources/org/silverpeas/general.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 ApplicationURL=/silverpeas/
 
diff --git a/gallery/gallery-war/pom.xml b/gallery/gallery-war/pom.xml
index a51f9f00db..3900ec4484 100644
--- a/gallery/gallery-war/pom.xml
+++ b/gallery/gallery-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>gallery</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.gallery</groupId>
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/GalleryIndexer.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/GalleryIndexer.java
index 17fd45f4cf..63df4fafac 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/GalleryIndexer.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/GalleryIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery;
 
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/ParameterNames.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/ParameterNames.java
index 6c000022d2..19f9d87957 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/ParameterNames.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/ParameterNames.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery;
 
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/control/GalleryExporter.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/control/GalleryExporter.java
index 315c86cbe9..eda25fc3a3 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/control/GalleryExporter.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/control/GalleryExporter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.control;
 
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/control/GallerySessionController.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/control/GallerySessionController.java
index de2c5152dd..d64b47d2e0 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/control/GallerySessionController.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/control/GallerySessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.control;
 
@@ -1100,8 +1100,12 @@ public Boolean isGuest() {
     return getUserDetail().isAccessGuest();
   }
 
+  public Boolean isAnonymous() {
+    return getUserDetail().isAnonymous();
+  }
+
   public Boolean isOrder() {
-    return !isGuest() && StringUtil.getBooleanValue(getComponentParameterValue("order"));
+    return !isGuest() && !isAnonymous() && StringUtil.getBooleanValue(getComponentParameterValue("order"));
   }
 
   public boolean isViewNotVisible() {
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/notification/GalleryInstanceManualUserNotification.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/notification/GalleryInstanceManualUserNotification.java
index c3a46e36da..0c8bccc384 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/notification/GalleryInstanceManualUserNotification.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/notification/GalleryInstanceManualUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.notification;
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/AjaxServlet.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/AjaxServlet.java
index ccbad20adf..9b647d20c2 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/AjaxServlet.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/AjaxServlet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.servlets;
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GalleryDragAndDrop.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GalleryDragAndDrop.java
index 9d96538e96..07e60fc546 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GalleryDragAndDrop.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GalleryDragAndDrop.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.servlets;
 
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GalleryInWysiwygRouter.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GalleryInWysiwygRouter.java
index 4e402b8374..4fda46cdb1 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GalleryInWysiwygRouter.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GalleryInWysiwygRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.servlets;
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GalleryRequestRouter.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GalleryRequestRouter.java
index f8693354cb..f7bd66fe2e 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GalleryRequestRouter.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GalleryRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.servlets;
 
@@ -160,6 +160,7 @@ public String getDestination(String function, GallerySessionController gallerySC
     request.setAttribute("highestUserRole", highestUserRole);
     request.setAttribute("UserId", userId);
     request.setAttribute("IsGuest", gallerySC.isGuest());
+    request.setAttribute("IsAnonymous", gallerySC.isAnonymous());
     request.setAttribute("IsExportEnable", gallerySC.isExportEnable());
     request.setAttribute("Sort", gallerySC.getSort());
 
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GoToImage.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GoToImage.java
index 0fc0f35fdf..f49c1cb53a 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GoToImage.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/servlets/GoToImage.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.servlets;
 
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/AbstractGalleryResource.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/AbstractGalleryResource.java
index 51baa5c124..851b9ad8e3 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/AbstractGalleryResource.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/AbstractGalleryResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.web;
 
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/AbstractMediaEntity.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/AbstractMediaEntity.java
index 782b7440cf..3addb58053 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/AbstractMediaEntity.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/AbstractMediaEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.web;
 
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/AlbumEntity.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/AlbumEntity.java
index 46a4ebdf40..280bd4b9d5 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/AlbumEntity.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/AlbumEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.web;
 
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/ExportOptionValue.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/ExportOptionValue.java
index de9c0d1149..340407a3eb 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/ExportOptionValue.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/ExportOptionValue.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.web;
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/GalleryInstanceFileUploadVerification.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/GalleryInstanceFileUploadVerification.java
index a4ceadc227..44a65fe8df 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/GalleryInstanceFileUploadVerification.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/GalleryInstanceFileUploadVerification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.web;
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/GalleryResource.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/GalleryResource.java
index ebe33da7fb..92a6c6f7b4 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/GalleryResource.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/GalleryResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.web;
 
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/MediaSort.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/MediaSort.java
index 4936a6ed9c..35fa4652c7 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/MediaSort.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/MediaSort.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.web;
 
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/PhotoEntity.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/PhotoEntity.java
index a8b601ecef..56caa630e8 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/PhotoEntity.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/PhotoEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.web;
 
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/SoundEntity.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/SoundEntity.java
index b5ddbd0d77..56becccc1c 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/SoundEntity.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/SoundEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.web;
 
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/StreamingEntity.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/StreamingEntity.java
index bd00292360..45c539a777 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/StreamingEntity.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/StreamingEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.web;
 
diff --git a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/VideoEntity.java b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/VideoEntity.java
index f385dfc7ce..fd0e5b9139 100644
--- a/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/VideoEntity.java
+++ b/gallery/gallery-war/src/main/java/org/silverpeas/components/gallery/web/VideoEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.gallery.web;
 
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/albumListDisplaySelector.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/albumListDisplaySelector.tag
index 6cd0c908b9..01681b7f9f 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/albumListDisplaySelector.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/albumListDisplaySelector.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
   
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
   
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/albumListHeader.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/albumListHeader.tag
index 9cdb874c63..2ec8a11e1f 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/albumListHeader.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/albumListHeader.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
   
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
   
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/browseBar.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/browseBar.tag
index 1a3f3a6c86..23c34b19a7 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/browseBar.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/browseBar.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
   
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
   
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/diaporama.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/diaporama.tag
index 186c3f1875..b65075c4f9 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/diaporama.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/diaporama.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception.  You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ tag language="java" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/displayAlbumContent.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/displayAlbumContent.tag
index 9f53bd6ca8..89184aff65 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/displayAlbumContent.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/displayAlbumContent.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/displayMediaInAlbumContent.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/displayMediaInAlbumContent.tag
index e26305b699..1722b940c1 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/displayMediaInAlbumContent.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/displayMediaInAlbumContent.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/displayMediaMetadata.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/displayMediaMetadata.tag
index bd48638113..e05443a94d 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/displayMediaMetadata.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/displayMediaMetadata.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
   
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
   
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/editMedia.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/editMedia.tag
index 3d35f6eaa2..c1fab6b16d 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/editMedia.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/editMedia.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ tag language="java" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
@@ -111,11 +111,12 @@
   }
 
     function ifCorrectLocalForm(callback) {
-      var errorMsg = "";
-      var errorNb = 0;
-      var title = stripInitialWhitespace(document.${_formName}.${MediaTitleInputName}.value);
-      var descr = document.${_formName}.${MediaDescriptionInputName}.value;
-      var media = stripInitialWhitespace(document.${_formName}.${mediaType eq MediaTypeStreaming ? 'SP$$StreamingHomepageUrl' : 'WAIMGVAR0'}.value);
+      let errorMsg = "";
+      let errorNb = 0;
+      const title = stripInitialWhitespace(document.${_formName}.${MediaTitleInputName}.value);
+      const descr = document.${_formName}.${MediaDescriptionInputName}.value;
+      const $media = document.${_formName}.${mediaType eq MediaTypeStreaming ? 'SP$$StreamingHomepageUrl' : 'WAIMGVAR0'};
+      const media = stripInitialWhitespace($media.value);
 
       <c:choose>
       <c:when test="${mediaType ne MediaTypeStreaming}">
@@ -131,7 +132,7 @@
       </c:forEach>
       </c:forEach>
       if (media && media.length > 0) {
-        var fileRegExprCheck = /[.](${supportedMediaTypeRegExpr})$/;
+        const fileRegExprCheck = /[.](${supportedMediaTypeRegExpr})$/;
         if (fileRegExprCheck.exec(media.toLowerCase()) == null) {
           <fmt:message key="gallery.${fn:toLowerCase(mediaType)}" var="mediaTypeLabel"/>
           errorMsg += "<li><fmt:message key="gallery.format"><fmt:param>${fn:toLowerCase(mediaTypeLabel)}</fmt:param></fmt:message></li>";
@@ -163,27 +164,29 @@
         errorNb++;
       }
       <c:if test="${isNewMediaCase}">
-      if (media == "") {
+      if (media === "") {
         errorMsg +=
             "<li>'<fmt:message key="gallery.${fn:toLowerCase(mediaType)}"/>'  <fmt:message key="GML.MustBeFilled"/></li>";
         errorNb++;
       }
       </c:if>
 
-      var dateErrors;
+      let dateErrors;
+      let errorPromises = [];
       <c:if test="${mediaType ne MediaTypeStreaming}">
       // Download period
-      var beginDownloadDate = {dateId : 'beginDownloadDate'};
-      var endDownloadDate = {dateId : 'endDownloadDate', defaultDateHour : '23:59'};
+      const beginDownloadDate = {dateId: 'beginDownloadDate'};
+      const endDownloadDate = {dateId: 'endDownloadDate', defaultDateHour: '23:59'};
       dateErrors = isPeriodEndingInFuture(beginDownloadDate, endDownloadDate);
       $(dateErrors).each(function(index, error) {
         errorMsg += "<li>" + error.message + "</li>";
         errorNb++;
       });
+      errorPromises.push(verifyFileUploadOfInput($media));
       </c:if>
       // Visibility period
-      var beginVisibilityDate = {dateId : 'beginVisibilityDate'};
-      var endVisibilityDate = {dateId : 'endVisibilityDate', defaultDateHour : '23:59'};
+      const beginVisibilityDate = {dateId: 'beginVisibilityDate'};
+      const endVisibilityDate = {dateId: 'endVisibilityDate', defaultDateHour: '23:59'};
       dateErrors = isPeriodEndingInFuture(beginVisibilityDate, endVisibilityDate);
       $(dateErrors).each(function(index, error) {
         errorMsg += "<li>" + error.message + "</li>";
@@ -193,22 +196,23 @@
       <c:if test="${isUsePdc and isNewMediaCase}">
       <view:pdcValidateClassification errorCounter="errorNb" errorMessager="errorMsg" errorWebRender="true"/>;
       </c:if>
-
-      switch (errorNb) {
-        case 0 :
-          callback.call(this);
-          break;
-        case 1 :
-          errorMsg =
-              "<b><fmt:message key="GML.ThisFormContains"/> 1 <fmt:message key="GML.error"/> : </b><ul>" +
-              errorMsg + "</ul>";
-          jQuery.popup.error(errorMsg);
-          break;
-        default :
-          errorMsg = "<b><fmt:message key="GML.ThisFormContains"/> " + errorNb +
-              " <fmt:message key="GML.errors"/> :</b><ul>" + errorMsg + "</ul>";
-          jQuery.popup.error(errorMsg);
-      }
+      sp.promise.whenAllResolved(errorPromises).then(function() {
+        switch (errorNb) {
+          case 0 :
+            callback.call(this);
+            break;
+          case 1 :
+            errorMsg =
+                    "<b><fmt:message key="GML.ThisFormContains"/> 1 <fmt:message key="GML.error"/> : </b><ul>" +
+                    errorMsg + "</ul>";
+            jQuery.popup.error(errorMsg);
+            break;
+          default :
+            errorMsg = "<b><fmt:message key="GML.ThisFormContains"/> " + errorNb +
+                    " <fmt:message key="GML.errors"/> :</b><ul>" + errorMsg + "</ul>";
+            jQuery.popup.error(errorMsg);
+        }
+      });
     }
 
 </script>
@@ -242,13 +246,13 @@
       </div>
     </div>
     <div class="field" id="titleArea">
-      <label for="title" class="txtlibform"><fmt:message key="GML.title"/></label>
+      <label for="SP$$MediaTitle" class="txtlibform"><fmt:message key="GML.title"/></label>
 
       <div class="champs">
         <c:if test="${media.title != (not empty internalMedia ? internalMedia.fileName : '')}">
           <c:set var="mediaTitle"><c:out value="${media.title}"/></c:set>
         </c:if>
-        <input id="title" type="text" name="SP$$MediaTitle" size="60" maxlength="150" value="${mediaTitle}"/>&nbsp;
+        <input id="SP$$MediaTitle" type="text" name="SP$$MediaTitle" size="60" maxlength="150" value="${mediaTitle}"/>&nbsp;
       </div>
     </div>
     <div class="field" id="descriptionArea">
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/editMediaLayout.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/editMediaLayout.tag
index b2326fd338..34506798bb 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/editMediaLayout.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/editMediaLayout.tag
@@ -2,7 +2,7 @@
 <%@ tag import="org.silverpeas.core.contribution.content.form.Form" %>
 <%@ tag import="org.silverpeas.core.contribution.content.form.PagesContext" %>
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -14,7 +14,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -22,7 +22,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ tag language="java" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
@@ -96,9 +96,12 @@
       new PagesContext("mediaForm", "0", _userLanguage, false, componentId, null);
   context.setBorderPrinted(false);
   context.setCurrentFieldIndex("11");
-  context.setIgnoreDefaultValues(true);
+  if (data != null) {
+    context.setCreation(data.isNew());
+  }
   if (media.getId() != null) {
     context.setObjectId(media.getId());
+    context.setIgnoreDefaultValues(true);
   }
 %>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/handleMediaPreview.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/handleMediaPreview.tag
index 26f1b6c86d..109f0810db 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/handleMediaPreview.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/handleMediaPreview.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/listSubAlbums.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/listSubAlbums.tag
index f4874e1357..63b7f22989 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/listSubAlbums.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/listSubAlbums.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
   
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
   
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/soundPlayer.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/soundPlayer.tag
index b4914d4ca4..d9add2dd78 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/soundPlayer.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/soundPlayer.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ tag language="java" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/streamingPlayer.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/streamingPlayer.tag
index 9b3f0ea70e..fe6fd87112 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/streamingPlayer.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/streamingPlayer.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ tag language="java" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/videoPlayer.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/videoPlayer.tag
index 91140d6d37..543c82d261 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/videoPlayer.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/videoPlayer.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ tag language="java" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/viewMediaLayout.tag b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/viewMediaLayout.tag
index d31b820468..2d7b7878c6 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/viewMediaLayout.tag
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/tags/silverpeas/gallery/viewMediaLayout.tag
@@ -3,7 +3,7 @@
 <%@ tag import="org.silverpeas.core.contribution.content.form.PagesContext" %>
 <%@ tag import="org.silverpeas.core.notification.user.NotificationContext" %>
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -15,7 +15,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -23,7 +23,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ tag language="java" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
@@ -202,9 +202,7 @@
 
   <view:frame>
     <form name="mediaForm" method="post" accept-charset="UTF-8" action="#">
-      <div id="pagination">
-        <viewTags:displayIndex nbItems="${requestScope.NbMedia}" index="${requestScope.Rang}" linkSuffix="Media"/>
-      </div>
+      <viewTags:displayIndex nbItems="${requestScope.NbMedia}" index="${requestScope.Rang}" linkSuffix="Media"/>
 
       <!-- button to go back to search results or current folder -->
       <fmt:message key="GML.back" var="backLabel"/>
diff --git a/gallery/gallery-war/src/main/webapp/WEB-INF/web.xml b/gallery/gallery-war/src/main/webapp/WEB-INF/web.xml
index 614c5bee41..d727b8274f 100644
--- a/gallery/gallery-war/src/main/webapp/WEB-INF/web.xml
+++ b/gallery/gallery-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/albumManager.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/albumManager.jsp
index 8aff1fb9f7..f32dcc4845 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/albumManager.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/albumManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/albumsOfMedia.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/albumsOfMedia.jsp
index ccb491d11a..215a01bef1 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/albumsOfMedia.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/albumsOfMedia.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/askMedia.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/askMedia.jsp
index 38c2fc1e71..7f445a8eb8 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/askMedia.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/askMedia.jsp
@@ -1,7 +1,7 @@
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.buttonpanes.ButtonPane" %>
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.buttons.Button" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/basket.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/basket.jsp
index 51b8313876..c09a7cfa62 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/basket.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/basket.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/basketForm.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/basketForm.jsp
index 7d4a78f87b..deb8c9308f 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/basketForm.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/basketForm.jsp
@@ -5,7 +5,7 @@
 <%@ page import="org.silverpeas.core.contribution.content.form.DataRecord" %>
 <%@ page import="org.silverpeas.core.contribution.content.form.Form" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -17,7 +17,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -25,7 +25,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/check.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/check.jsp
index 2f9ed2dfcc..5bcacd74ed 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/check.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/closeWindow.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/closeWindow.jsp
index b3904cc32e..1789a15282 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/closeWindow.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/closeWindow.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/downloadZip.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/downloadZip.jsp
index 0550c04c63..e55001cae6 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/downloadZip.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/downloadZip.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/javaScript/silverpeas-gallery-slider.js b/gallery/gallery-war/src/main/webapp/gallery/jsp/javaScript/silverpeas-gallery-slider.js
index cb62b281b6..7017a5eb92 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/javaScript/silverpeas-gallery-slider.js
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/javaScript/silverpeas-gallery-slider.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 (function($, initialValue) {
   var context = {
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaPhotoEdit.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaPhotoEdit.jsp
index 0a504b2e6c..d9c909df09 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaPhotoEdit.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaPhotoEdit.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaPhotoView.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaPhotoView.jsp
index a64e2090b6..ece697cf6f 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaPhotoView.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaPhotoView.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaSoundEdit.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaSoundEdit.jsp
index 2d41880b37..d1d118abb6 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaSoundEdit.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaSoundEdit.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaSoundView.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaSoundView.jsp
index bf5a4c1f20..252f14de69 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaSoundView.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaSoundView.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaStreamingEdit.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaStreamingEdit.jsp
index 661be92453..47d3b48c4f 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaStreamingEdit.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaStreamingEdit.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaStreamingView.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaStreamingView.jsp
index 56e5e3e876..c528d4a276 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaStreamingView.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaStreamingView.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaVideoEdit.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaVideoEdit.jsp
index b737c71f0c..ac6bfed560 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaVideoEdit.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaVideoEdit.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaVideoView.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaVideoView.jsp
index 3212243c19..7c2ecc9665 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaVideoView.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/mediaVideoView.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/order.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/order.jsp
index a110753cf7..ad81c5ab78 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/order.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/order.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/orders.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/orders.jsp
index fd41c940a2..eb9192e6f0 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/orders.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/orders.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/pathsManager.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/pathsManager.jsp
index d8b27ead22..6a32371dce 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/pathsManager.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/pathsManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/portlet.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/portlet.jsp
index 51aca82ded..daaac0a3b6 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/portlet.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/portlet.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/result.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/result.jsp
index 29ea353ed5..e57b1b18f5 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/result.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/result.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/searchAdvanced.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/searchAdvanced.jsp
index 953c8f3b1d..cad8571284 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/searchAdvanced.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/searchAdvanced.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/selectedMediaManager.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/selectedMediaManager.jsp
index 47fa5d0988..97fffe2af5 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/selectedMediaManager.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/selectedMediaManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/selectedPdcPositions.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/selectedPdcPositions.jsp
index 89d78663e1..3b2fc4eef4 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/selectedPdcPositions.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/selectedPdcPositions.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/styleSheets/gallery.css b/gallery/gallery-war/src/main/webapp/gallery/jsp/styleSheets/gallery.css
index f24a18ab22..f1143929ee 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/styleSheets/gallery.css
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/styleSheets/gallery.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 #subTopics {
   width: 100%;
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/viewAlbum.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/viewAlbum.jsp
index 581eb51666..7c8f19e97b 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/viewAlbum.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/viewAlbum.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
@@ -146,6 +146,7 @@
 <c:set var="isPrivateSearch" value="${requestScope.IsPrivateSearch}"/>
 <c:set var="isBasket" value="${requestScope.IsBasket}"/>
 <c:set var="isGuest" value="${requestScope.IsGuest}"/>
+<c:set var="isAnonymous" value="${requestScope.IsAnonymous}"/>
 <c:set var="isExportEnable" value="${requestScope.IsExportEnable}"/>
 <c:set var="basketOperationsAllowed" value="${highestUserRole eq userRole and isBasket}"/>
 <c:set var="isMediaSelectable" value="${basketOperationsAllowed or isExportEnable or highestUserRole.isGreaterThanOrEquals(publisherRole)}"/>
@@ -389,7 +390,7 @@ SUBSCRIPTION_PROMISE.then(function() {
     </c:if>
   </c:if>
   <%-- Manage media by massively way --%>
-  <c:if test="${not (highestUserRole eq userRole and not isBasket)}">
+  <c:if test="${isMediaSelectable}">
     <view:operation action="AllSelected" altText="${allSelectMediaLabel}" icon="${allSelectMediaIcon}"/>
   </c:if>
   <c:if test="${highestUserRole.isGreaterThanOrEquals(publisherRole)}">
@@ -425,13 +426,15 @@ SUBSCRIPTION_PROMISE.then(function() {
     <view:operation action="javascript:startSlideshow()" altText="${diaporamaLabel}" icon="${diaporamaIcon}"/>
   </c:if>
   <%-- Favorites --%>
-  <c:if test="${not isGuest}">
+  <c:if test="${not isGuest and not isAnonymous}">
     <view:operationSeparator/>
     <c:set var="tmpDesc"><c:out value="${currentAlbum.description}"/></c:set>
     <view:operation action="javaScript:addFavorite($('#breadCrumb').text(),'${silfn:escapeJs(tmpDesc)}','${currentAlbum.link}')" altText="${addFavoriteLabel}" icon="${addFavoriteIcon}"/>
   </c:if>
-  <view:operationSeparator/>
-  <view:operation action="javascript:spSubManager.switchUserSubscription()" altText="<span id='subscriptionMenuLabel'></span>" icon=""/>
+  <c:if test="${not isGuest and not isAnonymous}">
+    <view:operationSeparator/>
+    <view:operation action="javascript:spSubManager.switchUserSubscription()" altText="<span id='subscriptionMenuLabel'></span>" icon=""/>
+  </c:if>
   <%-- Private search --%>
   <c:if test="${isPrivateSearch}">
     <view:operationSeparator/>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/viewRestrictedMediaList.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/viewRestrictedMediaList.jsp
index 045ed55a8e..989f1fd33e 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/viewRestrictedMediaList.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/viewRestrictedMediaList.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
 <%@ include file="check.jsp" %>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/welcome.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/welcome.jsp
index 4203f2a14d..9cc0d78c69 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/welcome.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/welcome.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
@@ -49,6 +49,7 @@
 <c:set var="isBasket" value="${requestScope.IsBasket}"/>
 <c:set var="isOrder" value="${requestScope.IsOrder}"/>
 <c:set var="isGuest" value="${requestScope.IsGuest}"/>
+<c:set var="isAnonymous" value="${requestScope.IsAnonymous}"/>
 <c:set var="isExportEnable" value="${requestScope.IsExportEnable}" />
 
 <c:set var="componentId" value="${requestScope.browseContext[3]}"/>
@@ -201,7 +202,9 @@ SUBSCRIPTION_PROMISE.then(function() {
   <c:if test="${highestUserRole.isGreaterThanOrEquals(adminRole)}">
     <view:operation altText="${actionLabelManageSubscriptions}" action="ManageComponentSubscriptions"/>
   </c:if>
-  <view:operationSeparator/>
+  <c:if test="${not isGuest and not isAnonymous}">
+    <view:operationSeparator/>
+  </c:if>
   <c:if test="${highestUserRole.isGreaterThanOrEquals(publisherRole)}">
     <view:operationOfCreation action="javaScript:openGalleryEditor()" altText="${addAlbumLabel}" icon="${addAlbumIcon}"/>
     <view:operationSeparator/>
@@ -215,7 +218,7 @@ SUBSCRIPTION_PROMISE.then(function() {
   <c:if test="${(highestUserRole eq adminRole or highestUserRole eq userRole) and isOrder}">
     <view:operation action="OrderViewList" altText="${viewOrderListLabel}" icon="${viewOrderListIcon}"/>
   </c:if>
-  <c:if test="${highestUserRole != adminRole and not isGuest}">
+  <c:if test="${highestUserRole != adminRole and not isGuest and not isAnonymous}">
     <view:operationOfCreation action="javaScript:askMedia()" altText="${askMediaLabel}" icon="${askMediaIcon}"/>
     <view:operationSeparator/>
   </c:if>
@@ -223,7 +226,9 @@ SUBSCRIPTION_PROMISE.then(function() {
     <view:operation action="javascript:onClick=clipboardPaste()" altText="${pasteLabel}" icon="${pasteIcon}"/>
     <view:operationSeparator/>
   </c:if>
-  <view:operation action="javascript:spSubManager.switchUserSubscription()" altText="<span id='subscriptionMenuLabel'></span>" icon=""/>
+  <c:if test="${not isGuest and not isAnonymous}">
+    <view:operation action="javascript:spSubManager.switchUserSubscription()" altText="<span id='subscriptionMenuLabel'></span>" icon=""/>
+  </c:if>
   <c:if test="${isPrivateSearch}">
     <view:operationSeparator/>
     <view:operation action="LastResult" altText="${lastResultLabel}" icon="${lastResultIcon}"/>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/wysiwygAlbums.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/wysiwygAlbums.jsp
index 7ba3e7c286..9645cbca40 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/wysiwygAlbums.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/wysiwygAlbums.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.node.model.NodeDetail"%>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/wysiwygBrowser.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/wysiwygBrowser.jsp
index f1f93c5198..9e4459801d 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/wysiwygBrowser.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/wysiwygBrowser.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/gallery/gallery-war/src/main/webapp/gallery/jsp/wysiwygImages.jsp b/gallery/gallery-war/src/main/webapp/gallery/jsp/wysiwygImages.jsp
index dca2200e4b..33c7a4e6ee 100644
--- a/gallery/gallery-war/src/main/webapp/gallery/jsp/wysiwygImages.jsp
+++ b/gallery/gallery-war/src/main/webapp/gallery/jsp/wysiwygImages.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/gallery/gallery-war/src/test/java/org/silverpeas/components/gallery/servlets/ImageUrlAccordingToHtmlSizeDirectiveTranslatorTest.java b/gallery/gallery-war/src/test/java/org/silverpeas/components/gallery/servlets/ImageUrlAccordingToHtmlSizeDirectiveTranslatorTest.java
index 476d6bf2f0..634ac39773 100644
--- a/gallery/gallery-war/src/test/java/org/silverpeas/components/gallery/servlets/ImageUrlAccordingToHtmlSizeDirectiveTranslatorTest.java
+++ b/gallery/gallery-war/src/test/java/org/silverpeas/components/gallery/servlets/ImageUrlAccordingToHtmlSizeDirectiveTranslatorTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.gallery.servlets;
diff --git a/gallery/gallery-war/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer b/gallery/gallery-war/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
index fc51b7e4fd..02b5b225ce 100644
--- a/gallery/gallery-war/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
+++ b/gallery/gallery-war/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception. You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 org.silverpeas.core.test.TestBeanContainer
\ No newline at end of file
diff --git a/gallery/pom.xml b/gallery/pom.xml
index fbaccd99d4..5808336ba6 100644
--- a/gallery/pom.xml
+++ b/gallery/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
   
   <groupId>org.silverpeas.components</groupId>
diff --git a/hyperlink/hyperlink-configuration/pom.xml b/hyperlink/hyperlink-configuration/pom.xml
index d4a0516ed8..e05e20a576 100644
--- a/hyperlink/hyperlink-configuration/pom.xml
+++ b/hyperlink/hyperlink-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>hyperlink</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.hyperlink</groupId>
diff --git a/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle.properties b/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle.properties
index ecf2fb1300..ecb865f8f9 100644
--- a/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle.properties
+++ b/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 hyperlink.explications = Si aucune nouvelle fen\u00eatre n'est apparue, v\u00e9rifiez le blocage des pop-up et cliquez
 hyperlink.ici = ici
\ No newline at end of file
diff --git a/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle_de.properties b/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle_de.properties
index 1b21fcffd8..afbb2c0126 100644
--- a/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle_de.properties
+++ b/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 hyperlink.explications = If no new window appears, check the pop-up blocking and click
diff --git a/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle_en.properties b/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle_en.properties
index 0f9c00f38e..68c6937c51 100644
--- a/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle_en.properties
+++ b/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 hyperlink.explications = If no new window appears, check the pop-up blocking and click
 hyperlink.ici = here
\ No newline at end of file
diff --git a/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle_fr.properties b/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle_fr.properties
index 522e041769..fe11b3b0cd 100644
--- a/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle_fr.properties
+++ b/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/multilang/hyperlinkBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 hyperlink.explications = Si aucune nouvelle fen\u00eatre n'est apparue, v\u00e9rifiez le blocage des pop-up et cliquez
 hyperlink.ici = ici
diff --git a/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/settings/hyperlinkSettings.properties b/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/settings/hyperlinkSettings.properties
index 61dc37d238..fc10b9b1c5 100644
--- a/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/settings/hyperlinkSettings.properties
+++ b/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/hyperlink/settings/hyperlinkSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 #Specify if the key ST_PASSWORD must be processed or not
 #possible values = true, false
diff --git a/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/util/logging/hyperlinkLogging.properties b/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/util/logging/hyperlinkLogging.properties
index f10d3ff5db..378c3ca08a 100644
--- a/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/util/logging/hyperlinkLogging.properties
+++ b/hyperlink/hyperlink-configuration/src/main/config/properties/org/silverpeas/util/logging/hyperlinkLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/hyperlink/hyperlink-configuration/src/main/config/xmlcomponents/hyperlink.xml b/hyperlink/hyperlink-configuration/src/main/config/xmlcomponents/hyperlink.xml
index 4d7af0bdab..48f7f0afa8 100644
--- a/hyperlink/hyperlink-configuration/src/main/config/xmlcomponents/hyperlink.xml
+++ b/hyperlink/hyperlink-configuration/src/main/config/xmlcomponents/hyperlink.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/hyperlink/hyperlink-library/pom.xml b/hyperlink/hyperlink-library/pom.xml
index e74b9bb365..bb4887bb28 100644
--- a/hyperlink/hyperlink-library/pom.xml
+++ b/hyperlink/hyperlink-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>hyperlink</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.hyperlink</groupId>
diff --git a/hyperlink/hyperlink-library/src/main/java/org/silverpeas/components/hyperlink/HyperlinkException.java b/hyperlink/hyperlink-library/src/main/java/org/silverpeas/components/hyperlink/HyperlinkException.java
index 9aa142097d..4d62d41f28 100644
--- a/hyperlink/hyperlink-library/src/main/java/org/silverpeas/components/hyperlink/HyperlinkException.java
+++ b/hyperlink/hyperlink-library/src/main/java/org/silverpeas/components/hyperlink/HyperlinkException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.hyperlink;
 
diff --git a/hyperlink/hyperlink-library/src/main/java/org/silverpeas/components/hyperlink/HyperlinkStatistics.java b/hyperlink/hyperlink-library/src/main/java/org/silverpeas/components/hyperlink/HyperlinkStatistics.java
index ca25c0a8f2..c442705677 100644
--- a/hyperlink/hyperlink-library/src/main/java/org/silverpeas/components/hyperlink/HyperlinkStatistics.java
+++ b/hyperlink/hyperlink-library/src/main/java/org/silverpeas/components/hyperlink/HyperlinkStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.hyperlink;
 
diff --git a/hyperlink/hyperlink-war/pom.xml b/hyperlink/hyperlink-war/pom.xml
index cb02655491..3dff874308 100644
--- a/hyperlink/hyperlink-war/pom.xml
+++ b/hyperlink/hyperlink-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>hyperlink</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.hyperlink</groupId>
diff --git a/hyperlink/hyperlink-war/src/main/java/org/silverpeas/components/hyperlink/HyperlinkIndexer.java b/hyperlink/hyperlink-war/src/main/java/org/silverpeas/components/hyperlink/HyperlinkIndexer.java
index abb139e323..94f06ac72d 100644
--- a/hyperlink/hyperlink-war/src/main/java/org/silverpeas/components/hyperlink/HyperlinkIndexer.java
+++ b/hyperlink/hyperlink-war/src/main/java/org/silverpeas/components/hyperlink/HyperlinkIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.hyperlink;
 
diff --git a/hyperlink/hyperlink-war/src/main/java/org/silverpeas/components/hyperlink/control/HyperlinkSessionController.java b/hyperlink/hyperlink-war/src/main/java/org/silverpeas/components/hyperlink/control/HyperlinkSessionController.java
index 1b70d07a8e..666d97d5f1 100644
--- a/hyperlink/hyperlink-war/src/main/java/org/silverpeas/components/hyperlink/control/HyperlinkSessionController.java
+++ b/hyperlink/hyperlink-war/src/main/java/org/silverpeas/components/hyperlink/control/HyperlinkSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.hyperlink.control;
 
diff --git a/hyperlink/hyperlink-war/src/main/java/org/silverpeas/components/hyperlink/servlets/HyperlinkRequestRouter.java b/hyperlink/hyperlink-war/src/main/java/org/silverpeas/components/hyperlink/servlets/HyperlinkRequestRouter.java
index c7dbba7658..aa4c7fdc81 100644
--- a/hyperlink/hyperlink-war/src/main/java/org/silverpeas/components/hyperlink/servlets/HyperlinkRequestRouter.java
+++ b/hyperlink/hyperlink-war/src/main/java/org/silverpeas/components/hyperlink/servlets/HyperlinkRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.hyperlink.servlets;
 
diff --git a/hyperlink/hyperlink-war/src/main/webapp/WEB-INF/web.xml b/hyperlink/hyperlink-war/src/main/webapp/WEB-INF/web.xml
index 88cfdb962c..bfa4a597f9 100644
--- a/hyperlink/hyperlink-war/src/main/webapp/WEB-INF/web.xml
+++ b/hyperlink/hyperlink-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/check.jsp b/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/check.jsp
index 1dda833bc1..10c6e2ead2 100644
--- a/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/check.jsp
+++ b/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/internal.jsp b/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/internal.jsp
index 8a7a5221a8..ffb05ee2ef 100644
--- a/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/internal.jsp
+++ b/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/internal.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
 <%@ taglib tagdir="/WEB-INF/tags/silverpeas/util" prefix="viewTags" %>
diff --git a/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/redirect.jsp b/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/redirect.jsp
index b3d1a668f1..d1d129b8fd 100644
--- a/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/redirect.jsp
+++ b/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/redirect.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/sso.jsp b/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/sso.jsp
index 9af7937df1..b3d8cf97b4 100644
--- a/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/sso.jsp
+++ b/hyperlink/hyperlink-war/src/main/webapp/hyperlink/jsp/sso.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/hyperlink/pom.xml b/hyperlink/pom.xml
index dde133ea18..2211bfaf02 100644
--- a/hyperlink/pom.xml
+++ b/hyperlink/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
   
   <groupId>org.silverpeas.components</groupId>
diff --git a/infoLetter/infoLetter-configuration/pom.xml b/infoLetter/infoLetter-configuration/pom.xml
index fa007d2510..3a57ab56ba 100644
--- a/infoLetter/infoLetter-configuration/pom.xml
+++ b/infoLetter/infoLetter-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>infoletter</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.infoletter</groupId>
diff --git a/infoLetter/infoLetter-configuration/src/main/config/migrations/modules/infoLetter-migration.xml b/infoLetter/infoLetter-configuration/src/main/config/migrations/modules/infoLetter-migration.xml
index c392204c01..8486b07ee1 100644
--- a/infoLetter/infoLetter-configuration/src/main/config/migrations/modules/infoLetter-migration.xml
+++ b/infoLetter/infoLetter-configuration/src/main/config/migrations/modules/infoLetter-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify it under the terms of the
   ~ GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -10,14 +10,14 @@
   ~ redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
   ~ applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
   ~ text describing the FLOSS exception, and it is also available here:
-  ~ "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  ~ "https://www.silverpeas.org/legal/floss_exception.html"
   ~
   ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
   ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   ~ Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License along with this program.
-  ~ If not, see <http://www.gnu.org/licenses/>.
+  ~ If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <migration module="infoLetter"
diff --git a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle.properties b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle.properties
index 78563b80c9..0155126963 100644
--- a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle.properties
+++ b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 infoLetter = Gestionnaire de lettres d'information
diff --git a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle_de.properties b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle_de.properties
index f89fc0bca4..5291329f4e 100644
--- a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle_de.properties
+++ b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 infoLetter = Informationsbrief-Administrator
diff --git a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle_en.properties b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle_en.properties
index ccd3a6ae89..b3568745e1 100644
--- a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle_en.properties
+++ b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 infoLetter = Newsletter Manager
diff --git a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle_fr.properties b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle_fr.properties
index 3b730ed06b..4c040b0003 100644
--- a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle_fr.properties
+++ b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/multilang/infoLetterBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 infoLetter = Gestionnaire de lettres d'information
diff --git a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/settings/infoLetterIcons.properties b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/settings/infoLetterIcons.properties
index bdfa3d8e78..b9df7c5420 100644
--- a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/settings/infoLetterIcons.properties
+++ b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/settings/infoLetterIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 infoLetter.add = /util/icons/create-action/add-publication.png
 infoLetter.abonner = /util/icons/create-action/subscribe-infoletter.png
diff --git a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/settings/infoLetterSettings.properties b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/settings/infoLetterSettings.properties
index 376cb5d6bb..1f54684b3c 100644
--- a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/settings/infoLetterSettings.properties
+++ b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/settings/infoLetterSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 showHeader = false
 
diff --git a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/settings/usersCSVFormat.properties b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/settings/usersCSVFormat.properties
index c371ed5aff..3353e88c3a 100644
--- a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/settings/usersCSVFormat.properties
+++ b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/infoLetter/settings/usersCSVFormat.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 # Columns of CSV files
 # -------------------
diff --git a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/util/logging/infoLetterLogging.properties b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/util/logging/infoLetterLogging.properties
index 1fb5a26ef3..c87aa28475 100644
--- a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/util/logging/infoLetterLogging.properties
+++ b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/util/logging/infoLetterLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/wysiwyg/settings/infoLetterSettings.properties b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/wysiwyg/settings/infoLetterSettings.properties
index 37527d575a..7c5b5dfabc 100644
--- a/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/wysiwyg/settings/infoLetterSettings.properties
+++ b/infoLetter/infoLetter-configuration/src/main/config/properties/org/silverpeas/wysiwyg/settings/infoLetterSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 # Either the URL of the configuration file or the path of the configuration file relative to the
diff --git a/infoLetter/infoLetter-configuration/src/main/config/xmlcomponents/infoLetter.xml b/infoLetter/infoLetter-configuration/src/main/config/xmlcomponents/infoLetter.xml
index 5bf65d8863..2e7b98f460 100644
--- a/infoLetter/infoLetter-configuration/src/main/config/xmlcomponents/infoLetter.xml
+++ b/infoLetter/infoLetter-configuration/src/main/config/xmlcomponents/infoLetter.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/infoLetter/infoLetter-library/pom.xml b/infoLetter/infoLetter-library/pom.xml
index 663632d2b7..8917465233 100644
--- a/infoLetter/infoLetter-library/pom.xml
+++ b/infoLetter/infoLetter-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>infoletter</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.infoletter</groupId>
diff --git a/infoLetter/infoLetter-library/src/integration-test/java/org/silverpeas/components/infoletter/InfoLetterInstancePreDestructionIT.java b/infoLetter/infoLetter-library/src/integration-test/java/org/silverpeas/components/infoletter/InfoLetterInstancePreDestructionIT.java
index 20a82e48d2..bdfe31578d 100644
--- a/infoLetter/infoLetter-library/src/integration-test/java/org/silverpeas/components/infoletter/InfoLetterInstancePreDestructionIT.java
+++ b/infoLetter/infoLetter-library/src/integration-test/java/org/silverpeas/components/infoletter/InfoLetterInstancePreDestructionIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.infoletter;
 
diff --git a/infoLetter/infoLetter-library/src/integration-test/java/org/silverpeas/components/infoletter/test/WarBuilder4InfoLetter.java b/infoLetter/infoLetter-library/src/integration-test/java/org/silverpeas/components/infoletter/test/WarBuilder4InfoLetter.java
index 4a84b8669d..8662a276da 100644
--- a/infoLetter/infoLetter-library/src/integration-test/java/org/silverpeas/components/infoletter/test/WarBuilder4InfoLetter.java
+++ b/infoLetter/infoLetter-library/src/integration-test/java/org/silverpeas/components/infoletter/test/WarBuilder4InfoLetter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.infoletter.test;
 
diff --git a/infoLetter/infoLetter-library/src/integration-test/resources/arquillian.xml b/infoLetter/infoLetter-library/src/integration-test/resources/arquillian.xml
index c14046f2bb..bc5b073b7d 100644
--- a/infoLetter/infoLetter-library/src/integration-test/resources/arquillian.xml
+++ b/infoLetter/infoLetter-library/src/integration-test/resources/arquillian.xml
@@ -1,6 +1,6 @@
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <arquillian xmlns="http://jboss.org/schema/arquillian"
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterContentManager.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterContentManager.java
index d767b25ad6..edcac033c8 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterContentManager.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterContentManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.infoletter;
 
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterException.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterException.java
index 474f9228e8..f0511cf8de 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterException.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 /*
  * InfoLetterException.java
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterInstancePostConstruction.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterInstancePostConstruction.java
index af1e0952f0..993d3e0172 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterInstancePostConstruction.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.infoletter;
 
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterInstancePreDestruction.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterInstancePreDestruction.java
index 7a1175540e..8c00fde7ef 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterInstancePreDestruction.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.infoletter;
 
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterPeasTrappedException.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterPeasTrappedException.java
index e8e50cc372..5db7a8f77a 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterPeasTrappedException.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterPeasTrappedException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 /*--- formatted by Jindent 2.1, (www.c-lab.de/~jindent)
  ---*/
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterStatistics.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterStatistics.java
index 2bf9e16b32..90b47e74cb 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterStatistics.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/InfoLetterStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 /*--- formatted by Jindent 2.1, (www.c-lab.de/~jindent)
  ---*/
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/implementation/InfoLetterDataManager.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/implementation/InfoLetterDataManager.java
index 5dfe70a2cd..fd893bb600 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/implementation/InfoLetterDataManager.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/implementation/InfoLetterDataManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.infoletter.implementation;
 
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetter.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetter.java
index f749bfaa31..fbc418f1e3 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetter.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.infoletter.model;
 
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterPath.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterPath.java
index 38e9af1995..ba73f6983a 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterPath.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterPath.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2021 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.infoletter.model;
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterPublication.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterPublication.java
index cb1a3c6280..b1674b8510 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterPublication.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterPublication.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.infoletter.model;
 
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterPublicationPdC.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterPublicationPdC.java
index 0a34c367f3..ea65b17e4f 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterPublicationPdC.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterPublicationPdC.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.infoletter.model;
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterService.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterService.java
index 2687d618a0..9c97f955c6 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterService.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.infoletter.model;
 
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterTemplateContributionWrapper.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterTemplateContributionWrapper.java
index 78727ac61d..e3ab6ce42f 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterTemplateContributionWrapper.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/model/InfoLetterTemplateContributionWrapper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2021 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.infoletter.model;
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/notification/InfoLetterSubscriptionPublicationUserNotification.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/notification/InfoLetterSubscriptionPublicationUserNotification.java
index b7e11fb612..10e6958b99 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/notification/InfoLetterSubscriptionPublicationUserNotification.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/notification/InfoLetterSubscriptionPublicationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.infoletter.notification;
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/service/ByteArrayDataSource.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/service/ByteArrayDataSource.java
index 03a5836779..04ebc67633 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/service/ByteArrayDataSource.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/service/ByteArrayDataSource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 // *** Rajoute par F. Rageade pour compilation du SessionController
 package org.silverpeas.components.infoletter.service;
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/service/InfoLetterContributionLocator.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/service/InfoLetterContributionLocator.java
index ad2c98a81d..70e94517de 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/service/InfoLetterContributionLocator.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/service/InfoLetterContributionLocator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2021 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.infoletter.service;
diff --git a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/service/InfoLetterServiceProvider.java b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/service/InfoLetterServiceProvider.java
index e59f8c6139..a1e30af226 100644
--- a/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/service/InfoLetterServiceProvider.java
+++ b/infoLetter/infoLetter-library/src/main/java/org/silverpeas/components/infoletter/service/InfoLetterServiceProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 /*******************************
  *** ServiceFactory          ***
diff --git a/infoLetter/infoLetter-war/pom.xml b/infoLetter/infoLetter-war/pom.xml
index 555deb9d0b..e0f6df0502 100644
--- a/infoLetter/infoLetter-war/pom.xml
+++ b/infoLetter/infoLetter-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>infoletter</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.infoletter</groupId>
diff --git a/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/InfoLetterIndexer.java b/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/InfoLetterIndexer.java
index 6369254d53..eb65759c00 100644
--- a/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/InfoLetterIndexer.java
+++ b/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/InfoLetterIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2021 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.infoletter;
diff --git a/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/InfoLetterInitialization.java b/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/InfoLetterInitialization.java
index da46e762c3..23e40d266f 100644
--- a/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/InfoLetterInitialization.java
+++ b/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/InfoLetterInitialization.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2021 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.infoletter;
 
diff --git a/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/InfoLetterInstanceRoutingMap.java b/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/InfoLetterInstanceRoutingMap.java
index 1fece33f40..718e60f800 100644
--- a/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/InfoLetterInstanceRoutingMap.java
+++ b/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/InfoLetterInstanceRoutingMap.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2021 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.infoletter;
diff --git a/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/control/InfoLetterSessionController.java b/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/control/InfoLetterSessionController.java
index b48ca2e331..284c31179b 100644
--- a/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/control/InfoLetterSessionController.java
+++ b/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/control/InfoLetterSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.infoletter.control;
 
diff --git a/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/servlets/GoToNewsletter.java b/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/servlets/GoToNewsletter.java
index 6bdce38065..984c11e442 100644
--- a/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/servlets/GoToNewsletter.java
+++ b/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/servlets/GoToNewsletter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.infoletter.servlets;
 
diff --git a/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/servlets/InfoLetterRequestRouter.java b/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/servlets/InfoLetterRequestRouter.java
index 227d8fed87..c71d41822b 100644
--- a/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/servlets/InfoLetterRequestRouter.java
+++ b/infoLetter/infoLetter-war/src/main/java/org/silverpeas/components/infoletter/servlets/InfoLetterRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.infoletter.servlets;
 
diff --git a/infoLetter/infoLetter-war/src/main/webapp/WEB-INF/tags/silverpeas/infoLetter/infoLetterList.tag b/infoLetter/infoLetter-war/src/main/webapp/WEB-INF/tags/silverpeas/infoLetter/infoLetterList.tag
index 5779c61e2e..11b10fcc2e 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/WEB-INF/tags/silverpeas/infoLetter/infoLetterList.tag
+++ b/infoLetter/infoLetter-war/src/main/webapp/WEB-INF/tags/silverpeas/infoLetter/infoLetterList.tag
@@ -4,7 +4,7 @@
 <%@ tag import="org.silverpeas.core.contribution.content.form.PagesContext" %>
 <%@ tag import="org.silverpeas.core.admin.user.model.User" %>
 <%@ tag import="org.silverpeas.core.util.DateUtil" %><%--
-  Copyright (C) 2000 - 2021 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
   
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -16,7 +16,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -24,7 +24,7 @@
   GNU Affero General Public License for more details.
   
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/WEB-INF/web.xml b/infoLetter/infoLetter-war/src/main/webapp/WEB-INF/web.xml
index 3a1803431e..6f617f98e0 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/WEB-INF/web.xml
+++ b/infoLetter/infoLetter-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/addEmail.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/addEmail.jsp
index 6ca8bc59ac..ad3e7931f6 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/addEmail.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/addEmail.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/attachedFiles.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/attachedFiles.jsp
index 36200c1420..9e520470af 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/attachedFiles.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/attachedFiles.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/check.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/check.jsp
index 712aa20178..1304c31755 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/check.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/editLetter.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/editLetter.jsp
index c76ec4a515..1ce3f24f4a 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/editLetter.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/editLetter.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/emailsManager.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/emailsManager.jsp
index a0aaba5cb2..e544f6d8e7 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/emailsManager.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/emailsManager.jsp
@@ -1,6 +1,6 @@
 <%@ page import="org.silverpeas.core.util.WebEncodeHelper" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/exportEmailsCsv.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/exportEmailsCsv.jsp
index bd490612d1..86fe43f6bd 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/exportEmailsCsv.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/exportEmailsCsv.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/headerLetter.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/headerLetter.jsp
index 103fe663b9..8ebdcac83d 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/headerLetter.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/headerLetter.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/importEmailsCsv.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/importEmailsCsv.jsp
index bbcef6f3ba..f5482701b2 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/importEmailsCsv.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/importEmailsCsv.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/infoLetterSended.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/infoLetterSended.jsp
index acdc0a4b1f..a8b17e04b3 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/infoLetterSended.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/infoLetterSended.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/inlinedCssHtml.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/inlinedCssHtml.jsp
index 321599e1aa..ca1c030204 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/inlinedCssHtml.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/inlinedCssHtml.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/javaScripts/infoLetter.js b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/javaScripts/infoLetter.js
index f74671cc13..8520d5b6c2 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/javaScripts/infoLetter.js
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/javaScripts/infoLetter.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2021 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 function monitorHeightOfIsolatedDisplay(id, origin) {
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/listLetterAdmin.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/listLetterAdmin.jsp
index 90cb7e1dba..023540cc39 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/listLetterAdmin.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/listLetterAdmin.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/listLetterUser.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/listLetterUser.jsp
index 90798aef65..bdc840e7c5 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/listLetterUser.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/listLetterUser.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/modifHeaders.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/modifHeaders.jsp
index 15372fdd46..1acbfe384c 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/modifHeaders.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/modifHeaders.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/portletListLetterAdmin.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/portletListLetterAdmin.jsp
index aa3c686fa7..826ef59f74 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/portletListLetterAdmin.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/portletListLetterAdmin.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/portletListLetterUser.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/portletListLetterUser.jsp
index a2b3563384..6b68c3b435 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/portletListLetterUser.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/portletListLetterUser.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/previewLetter.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/previewLetter.jsp
index 87d27d71f4..2da8ad0379 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/previewLetter.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/previewLetter.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/styleSheets/infoLetter.css b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/styleSheets/infoLetter.css
index 3d0882c06e..9cccbcb258 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/styleSheets/infoLetter.css
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/styleSheets/infoLetter.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */
 
 .infoletter fieldset#infoFieldset legend {
diff --git a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/viewLetter.jsp b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/viewLetter.jsp
index 2157bf5ba2..bb319a1b82 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/viewLetter.jsp
+++ b/infoLetter/infoLetter-war/src/main/webapp/infoLetter/jsp/viewLetter.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
diff --git a/infoLetter/infoLetter-war/src/main/webapp/wysiwyg/jsp/ckeditor/infoLetterConfig.js b/infoLetter/infoLetter-war/src/main/webapp/wysiwyg/jsp/ckeditor/infoLetterConfig.js
index d521c14396..3e63ca01b4 100644
--- a/infoLetter/infoLetter-war/src/main/webapp/wysiwyg/jsp/ckeditor/infoLetterConfig.js
+++ b/infoLetter/infoLetter-war/src/main/webapp/wysiwyg/jsp/ckeditor/infoLetterConfig.js
@@ -48,7 +48,7 @@ CKEDITOR.editorConfig = function( config )
     { name: 'links',       items : [ 'Link','Unlink'] },
     { name: 'insert',      items : [ 'variables' ] },
     '/',
-    { name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','-','RemoveFormat' ] },
+    { name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Superscript','-','RemoveFormat' ] },
     { name: 'styles',      items : [ 'Styles','Format','Font','FontSize' ] },
     { name: 'colors',      items : [ 'TextColor','BGColor','Smiley' ] }
   ];
diff --git a/infoLetter/pom.xml b/infoLetter/pom.xml
index f5f74b42c8..3af2e87b0c 100644
--- a/infoLetter/pom.xml
+++ b/infoLetter/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/jdbcConnector/jdbcConnector-configuration/pom.xml b/jdbcConnector/jdbcConnector-configuration/pom.xml
index e503dd85fe..65ad40bd69 100644
--- a/jdbcConnector/jdbcConnector-configuration/pom.xml
+++ b/jdbcConnector/jdbcConnector-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>jdbcconnector</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.jdbcconnector</groupId>
diff --git a/jdbcConnector/jdbcConnector-configuration/src/main/config/migrations/modules/connecteurJDBC-migration.xml b/jdbcConnector/jdbcConnector-configuration/src/main/config/migrations/modules/connecteurJDBC-migration.xml
index 612f4e57c5..1668a78197 100644
--- a/jdbcConnector/jdbcConnector-configuration/src/main/config/migrations/modules/connecteurJDBC-migration.xml
+++ b/jdbcConnector/jdbcConnector-configuration/src/main/config/migrations/modules/connecteurJDBC-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   -->
 <migration module="connecteurJDBC"
            xmlns="http://silverpeas.org/xml/ns/migration"
diff --git a/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector.properties b/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector.properties
index 2e1e1e0e5c..c5b563648b 100644
--- a/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector.properties
+++ b/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 erreurParametresConnectionIncorrects = param\u00e8tres de connexion incorrects
 erreurChampsTropLong =  champ trop long
diff --git a/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector_de.properties b/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector_de.properties
index b605a5d218..54dc20822b 100644
--- a/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector_de.properties
+++ b/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 erreurParametresConnectionIncorrects = Verbindungsparameter falsch
diff --git a/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector_en.properties b/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector_en.properties
index e3aeac5cda..457579930a 100644
--- a/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector_en.properties
+++ b/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 parametresConnectionIncorrects = wrong connexion settings
 erreurChampsTropLong =  Too many characters
diff --git a/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector_fr.properties b/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector_fr.properties
index 0a07251c99..cc7dc0c5b6 100644
--- a/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector_fr.properties
+++ b/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/multilang/jdbcConnector_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 erreurParametresConnectionIncorrects = param\u00e8tres de connexion incorrects
 erreurChampsTropLong =  champ trop long
diff --git a/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/settings/dataSources.properties b/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/settings/dataSources.properties
index c9e7dbd4e4..6dfcc299d8 100644
--- a/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/settings/dataSources.properties
+++ b/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/jdbcConnector/settings/dataSources.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify it under the terms of the
 # GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
 # redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
 # applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
 # text describing the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 # Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License along with this program.
-# If not, see <http://www.gnu.org/licenses/>.
+# If not, see <https://www.gnu.org/licenses/>.
 #
 
 # number of configured data sources
diff --git a/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/util/logging/jdbcConnectorLogging.properties b/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/util/logging/jdbcConnectorLogging.properties
index e053f7e752..53fcbc6343 100644
--- a/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/util/logging/jdbcConnectorLogging.properties
+++ b/jdbcConnector/jdbcConnector-configuration/src/main/config/properties/org/silverpeas/util/logging/jdbcConnectorLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/jdbcConnector/jdbcConnector-configuration/src/main/config/xmlcomponents/connecteurJDBC.xml b/jdbcConnector/jdbcConnector-configuration/src/main/config/xmlcomponents/connecteurJDBC.xml
index 998385a48b..0e0669df5b 100644
--- a/jdbcConnector/jdbcConnector-configuration/src/main/config/xmlcomponents/connecteurJDBC.xml
+++ b/jdbcConnector/jdbcConnector-configuration/src/main/config/xmlcomponents/connecteurJDBC.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/jdbcConnector/jdbcConnector-library/pom.xml b/jdbcConnector/jdbcConnector-library/pom.xml
index 6a39dce867..868821ffdf 100644
--- a/jdbcConnector/jdbcConnector-library/pom.xml
+++ b/jdbcConnector/jdbcConnector-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>jdbcconnector</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.jdbcconnector</groupId>
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/ConnecteurJDBCInstancePreDestruction.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/ConnecteurJDBCInstancePreDestruction.java
index d247a6a868..cc7e6d6a8c 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/ConnecteurJDBCInstancePreDestruction.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/ConnecteurJDBCInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.jdbcconnector;
 
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/model/DataSourceConnectionInfo.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/model/DataSourceConnectionInfo.java
index 0bd13f7394..94efa92253 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/model/DataSourceConnectionInfo.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/model/DataSourceConnectionInfo.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.model;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/model/DataSourceConnectionInfoRepository.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/model/DataSourceConnectionInfoRepository.java
index 8439e3348b..e764ed13c6 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/model/DataSourceConnectionInfoRepository.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/model/DataSourceConnectionInfoRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.model;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/model/DataSourceDefinition.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/model/DataSourceDefinition.java
index d3830769d1..2254f30d3b 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/model/DataSourceDefinition.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/model/DataSourceDefinition.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.model;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/package-info.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/package-info.java
index 2f04fbf638..1e477c328b 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/package-info.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/package-info.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /**
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/DataSourceConnectionInfoService.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/DataSourceConnectionInfoService.java
index f123176eab..65bb55f1e8 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/DataSourceConnectionInfoService.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/DataSourceConnectionInfoService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.jdbcconnector.service;
 
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/JdbcConnectorException.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/JdbcConnectorException.java
index ac2210ea32..2ac421d38d 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/JdbcConnectorException.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/JdbcConnectorException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.jdbcconnector.service;
 
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/JdbcConnectorRuntimeException.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/JdbcConnectorRuntimeException.java
index fddb00b5f4..ec986a1854 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/JdbcConnectorRuntimeException.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/JdbcConnectorRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.jdbcconnector.service;
 
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/JdbcRequester.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/JdbcRequester.java
index ddc07736d3..b206ef0ffe 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/JdbcRequester.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/JdbcRequester.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.service;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/SimpleDataSourceConnectionInfoService.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/SimpleDataSourceConnectionInfoService.java
index 69e9e5970a..b32d42cb7f 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/SimpleDataSourceConnectionInfoService.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/SimpleDataSourceConnectionInfoService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.jdbcconnector.service;
 
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/TableFieldValue.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/TableFieldValue.java
index fe1246704c..901fcee928 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/TableFieldValue.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/TableFieldValue.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.service;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/TableRow.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/TableRow.java
index 92789dfa59..68407698ef 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/TableRow.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/TableRow.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.service;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Equality.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Equality.java
index 7e16befe3e..be555cdad3 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Equality.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Equality.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.service.comparators;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/FieldValueComparator.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/FieldValueComparator.java
index 8f858f233c..ce48a566eb 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/FieldValueComparator.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/FieldValueComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.service.comparators;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Inclusion.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Inclusion.java
index 776ec53127..cf75e799a8 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Inclusion.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Inclusion.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.service.comparators;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Inequality.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Inequality.java
index d4b92d07b0..07ec7d8a27 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Inequality.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Inequality.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.service.comparators;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Inferiority.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Inferiority.java
index 3161516c37..1b2995747f 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Inferiority.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Inferiority.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.service.comparators;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Like.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Like.java
index 4795862df5..95f6dcadaa 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Like.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Like.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.service.comparators;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/NothingBuilder.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/NothingBuilder.java
index 18b71d7a63..cc93b28bf7 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/NothingBuilder.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/NothingBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.service.comparators;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/StrictInferiority.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/StrictInferiority.java
index a94806c363..91ccda5d84 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/StrictInferiority.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/StrictInferiority.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.service.comparators;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/StrictSuperiority.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/StrictSuperiority.java
index 6f0d58025b..bb696d8855 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/StrictSuperiority.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/StrictSuperiority.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.service.comparators;
diff --git a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Superiority.java b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Superiority.java
index fabe2863ce..f125d04b0f 100644
--- a/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Superiority.java
+++ b/jdbcConnector/jdbcConnector-library/src/main/java/org/silverpeas/components/jdbcconnector/service/comparators/Superiority.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.service.comparators;
diff --git a/jdbcConnector/jdbcConnector-war/pom.xml b/jdbcConnector/jdbcConnector-war/pom.xml
index 3d784f8f8c..07f830a890 100644
--- a/jdbcConnector/jdbcConnector-war/pom.xml
+++ b/jdbcConnector/jdbcConnector-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>jdbcconnector</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.jdbcconnector</groupId>
diff --git a/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/JdbcConnectorWebController.java b/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/JdbcConnectorWebController.java
index 647f1ee220..dbc89bd934 100644
--- a/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/JdbcConnectorWebController.java
+++ b/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/JdbcConnectorWebController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.control;
diff --git a/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/JdbcConnectorWebRequestContext.java b/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/JdbcConnectorWebRequestContext.java
index e503e23ba9..947c92d7e7 100644
--- a/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/JdbcConnectorWebRequestContext.java
+++ b/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/JdbcConnectorWebRequestContext.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.control;
diff --git a/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/QueryResult.java b/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/QueryResult.java
index b0f4da97a7..961cdf53e0 100644
--- a/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/QueryResult.java
+++ b/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/QueryResult.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.control;
diff --git a/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/TableRowsFilter.java b/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/TableRowsFilter.java
index 9e3eefcb51..d6344eb0dc 100644
--- a/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/TableRowsFilter.java
+++ b/jdbcConnector/jdbcConnector-war/src/main/java/org/silverpeas/components/jdbcconnector/control/TableRowsFilter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.jdbcconnector.control;
diff --git a/jdbcConnector/jdbcConnector-war/src/main/webapp/WEB-INF/web.xml b/jdbcConnector/jdbcConnector-war/src/main/webapp/WEB-INF/web.xml
index cdf96c1115..80257fafe6 100644
--- a/jdbcConnector/jdbcConnector-war/src/main/webapp/WEB-INF/web.xml
+++ b/jdbcConnector/jdbcConnector-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describingé"é&
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/head.jsp b/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/head.jsp
index 5d4fcefb9a..3d2f90ccc2 100644
--- a/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/head.jsp
+++ b/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/head.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%
diff --git a/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/jdbcConnector.jsp b/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/jdbcConnector.jsp
index 4a0a739ab3..a888ea99d8 100644
--- a/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/jdbcConnector.jsp
+++ b/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/jdbcConnector.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ page import="org.silverpeas.components.jdbcconnector.service.comparators.Equality" %>
diff --git a/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/portlet.jsp b/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/portlet.jsp
index 6b9c0b1630..5624779596 100644
--- a/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/portlet.jsp
+++ b/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/portlet.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ page import="org.silverpeas.components.jdbcconnector.service.comparators.Equality" %>
diff --git a/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/requestEditor.jsp b/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/requestEditor.jsp
index 50c0913314..c27b405218 100644
--- a/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/requestEditor.jsp
+++ b/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/requestEditor.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ include file="head.jsp" %>
diff --git a/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/requestParameters.jsp b/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/requestParameters.jsp
index e1d05f497b..d54ccc792b 100644
--- a/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/requestParameters.jsp
+++ b/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/requestParameters.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ include file="head.jsp" %>
diff --git a/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/styleSheets/connecteurJDBC.css b/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/styleSheets/connecteurJDBC.css
index 238fe58d37..4c588ba997 100644
--- a/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/styleSheets/connecteurJDBC.css
+++ b/jdbcConnector/jdbcConnector-war/src/main/webapp/connecteurJDBC/jsp/styleSheets/connecteurJDBC.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 .break-line {
   display: block;
diff --git a/jdbcConnector/pom.xml b/jdbcConnector/pom.xml
index 103730b9d9..f958c39ec8 100644
--- a/jdbcConnector/pom.xml
+++ b/jdbcConnector/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/kmelia/kmelia-configuration/pom.xml b/kmelia/kmelia-configuration/pom.xml
index 7a0ec8d006..b1e2c4b9eb 100644
--- a/kmelia/kmelia-configuration/pom.xml
+++ b/kmelia/kmelia-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>kmelia</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.kmelia</groupId>
diff --git a/kmelia/kmelia-configuration/src/main/config/migrations/modules/kmelia-migration.xml b/kmelia/kmelia-configuration/src/main/config/migrations/modules/kmelia-migration.xml
index 360fa8191d..668a650b5f 100644
--- a/kmelia/kmelia-configuration/src/main/config/migrations/modules/kmelia-migration.xml
+++ b/kmelia/kmelia-configuration/src/main/config/migrations/modules/kmelia-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify it under the terms of the
   ~ GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -10,14 +10,14 @@
   ~ redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
   ~ applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
   ~ text describing the FLOSS exception, and it is also available here:
-  ~ "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  ~ "https://www.silverpeas.org/legal/floss_exception.html"
   ~
   ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
   ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   ~ Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License along with this program.
-  ~ If not, see <http://www.gnu.org/licenses/>.
+  ~ If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <migration module="kmelia"
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/messages/kmeliaMessages.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/messages/kmeliaMessages.properties
index 3d9401cb88..1be83e3150 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/messages/kmeliaMessages.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/messages/kmeliaMessages.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 kmelia.IMPOSSIBLE_DE_FABRIQUER_NODEBM_HOME = Impossible de cr�er le service NodeBmHome
 kmelia.IMPOSSIBLE_DE_FABRIQUER_PUBLICATIONBM_HOME = Impossible de cr�er le service PublicationBmHome
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle.properties
index e39be4fd73..7d6635d98e 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 Consultation=Consultation
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle_de.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle_de.properties
index c162d370e6..59952a05d9 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle_de.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 CreerSousTheme = Ein Thema erstellen
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle_en.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle_en.properties
index 2756c551c2..1199f69730 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle_en.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 Theme = Folder
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle_fr.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle_fr.properties
index 0e640a32d0..1d4fe431cb 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle_fr.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 Consultation=Consultation
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport.properties
index 9b32244cbd..56defb5265 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport.properties
@@ -1,4 +1,4 @@
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -10,7 +10,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -18,7 +18,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 #
 # This resource bundle defines the translated text for the ODT document to generate from a given
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport_de.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport_de.properties
index 7e8ac566ed..4de0dbf010 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport_de.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport_de.properties
@@ -1,4 +1,4 @@
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -10,7 +10,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -18,7 +18,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 #
 # This resource bundle defines the translated text for the ODT document to generate from a given
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport_en.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport_en.properties
index e9850e553c..b2bc477dae 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport_en.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport_en.properties
@@ -1,4 +1,4 @@
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -10,7 +10,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -18,7 +18,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 #
 # This resource bundle defines the translated text for the ODT document to generate from a given
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport_fr.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport_fr.properties
index 9b32244cbd..56defb5265 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport_fr.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/kmeliaExport_fr.properties
@@ -1,4 +1,4 @@
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -10,7 +10,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -18,7 +18,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 #
 # This resource bundle defines the translated text for the ODT document to generate from a given
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle.properties
index 33f8b28f33..b442133691 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 0 = Aujourd'hui
 7 = Derni\u00E8re semaine
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle_de.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle_de.properties
index 71f7e1c2bf..394e69a63e 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle_de.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 0 = Heute
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle_en.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle_en.properties
index 2ade34115e..b93f1f303f 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle_en.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 0 = Today
 7 = Less than a week
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle_fr.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle_fr.properties
index 0c70146b25..d5b02a0d49 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle_fr.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/multilang/timeAxisBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 0 = Aujourd'hui
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/settings/kmeliaIcons.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/settings/kmeliaIcons.properties
index ad5eb388ce..04ad88b5e0 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/settings/kmeliaIcons.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/settings/kmeliaIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 kmelia.link = /util/icons/link.gif
 kmelia.1px 	= /util/icons/colorPix/1px.gif
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/settings/kmeliaSettings.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/settings/kmeliaSettings.properties
index d70ece2973..700f9cf581 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/settings/kmeliaSettings.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/kmelia/settings/kmeliaSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 HomeNbPublications = 15
 HomeNbCols = 3
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/util/logging/kmaxLogging.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/util/logging/kmaxLogging.properties
index 848f0d7d48..c41e8f1137 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/util/logging/kmaxLogging.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/util/logging/kmaxLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/util/logging/kmeliaLogging.properties b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/util/logging/kmeliaLogging.properties
index 1b59af9f7c..d6ee8964f3 100644
--- a/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/util/logging/kmeliaLogging.properties
+++ b/kmelia/kmelia-configuration/src/main/config/properties/org/silverpeas/util/logging/kmeliaLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/kmelia/kmelia-configuration/src/main/config/xmlcomponents/kmax.xml b/kmelia/kmelia-configuration/src/main/config/xmlcomponents/kmax.xml
index 950ecadaea..9ed7ffed56 100644
--- a/kmelia/kmelia-configuration/src/main/config/xmlcomponents/kmax.xml
+++ b/kmelia/kmelia-configuration/src/main/config/xmlcomponents/kmax.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <WAComponent xmlns="http://silverpeas.org/xml/ns/component" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -194,7 +194,7 @@
           <name>draft</name>
           <label>
             <message lang="fr">Mode brouillon</message>
-            <message lang="en">Draf</message>
+            <message lang="en">Draft</message>
             <message lang="de">Entwurf</message>
           </label>
           <order>5</order>
diff --git a/kmelia/kmelia-configuration/src/main/config/xmlcomponents/kmelia.xml b/kmelia/kmelia-configuration/src/main/config/xmlcomponents/kmelia.xml
index b237f2cfc6..daa4ef1821 100644
--- a/kmelia/kmelia-configuration/src/main/config/xmlcomponents/kmelia.xml
+++ b/kmelia/kmelia-configuration/src/main/config/xmlcomponents/kmelia.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
@@ -1280,9 +1280,20 @@
 		      <type>checkbox</type>
 		      <updatable>always</updatable>
 		      <help>
-		        <message lang="fr">Les publications créées au sein de cette instance pourront être classées sur le Plan de Classement</message>
-		        <message lang="en">Publications would be classified on PDC</message>
-		        <message lang="de">Veröffentlichungen würden auf dem KP klassifiziert werden</message>
+		        <message lang="fr">Les publications créées au sein de cette instance pourront être
+              classées sur le Plan de Classement. Si une publication est classée lorsque le
+              paramètre est désactivé, elle n'est pas déclassée. Elle le sera lors de sa mise à
+              jour.
+            </message>
+		        <message lang="en">Publications created within this instance can be ranked on the
+              Classification Plan. If a publication is ranked when the parameter is deactivated, it
+              is not unclassified. It will be unclassified when it is updated.
+            </message>
+            <message lang="de">Beiträge, die in dieser Instanz erstellt werden, können auf der
+              Gliederungsebene eingestuft werden. Wenn ein Beitrag klassifiziert ist, während die
+              Einstellung deaktiviert ist, wird er nicht herabgestuft. Die Klassifizierung wird erst
+              bei der Aktualisierung vorgenommen.
+            </message>
 		      </help>
 		    </parameter>
 		    <parameter>
diff --git a/kmelia/kmelia-configuration/src/main/config/xmlcomponents/toolbox.xml b/kmelia/kmelia-configuration/src/main/config/xmlcomponents/toolbox.xml
index 9f28cddc13..cf3f79aa89 100644
--- a/kmelia/kmelia-configuration/src/main/config/xmlcomponents/toolbox.xml
+++ b/kmelia/kmelia-configuration/src/main/config/xmlcomponents/toolbox.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/kmelia/kmelia-library/pom.xml b/kmelia/kmelia-library/pom.xml
index b450c49303..ef3fccac5e 100644
--- a/kmelia/kmelia-library/pom.xml
+++ b/kmelia/kmelia-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>kmelia</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.kmelia</groupId>
diff --git a/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/dao/TopicSearchDaoIT.java b/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/dao/TopicSearchDaoIT.java
index d6d2088be5..faeb2437cb 100644
--- a/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/dao/TopicSearchDaoIT.java
+++ b/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/dao/TopicSearchDaoIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.dao;
diff --git a/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/repository/TopicSearchRepositoryIT.java b/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/repository/TopicSearchRepositoryIT.java
index 8367825d5a..b0bd9c291a 100644
--- a/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/repository/TopicSearchRepositoryIT.java
+++ b/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/repository/TopicSearchRepositoryIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.repository;
diff --git a/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/search/KmeliaSearchServiceProviderIT.java b/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/search/KmeliaSearchServiceProviderIT.java
index 8dfca0526e..a2c3c92e9e 100644
--- a/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/search/KmeliaSearchServiceProviderIT.java
+++ b/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/search/KmeliaSearchServiceProviderIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.search;
diff --git a/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/search/TopicSearchServiceIT.java b/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/search/TopicSearchServiceIT.java
index 57c1d5809d..db7a37667e 100644
--- a/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/search/TopicSearchServiceIT.java
+++ b/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/search/TopicSearchServiceIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.search;
diff --git a/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/test/WarBuilder4Kmelia.java b/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/test/WarBuilder4Kmelia.java
index a2565aab5b..e2bf9231f5 100644
--- a/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/test/WarBuilder4Kmelia.java
+++ b/kmelia/kmelia-library/src/integration-test/java/org/silverpeas/components/kmelia/test/WarBuilder4Kmelia.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.test;
 
diff --git a/kmelia/kmelia-library/src/integration-test/resources/arquillian.xml b/kmelia/kmelia-library/src/integration-test/resources/arquillian.xml
index c14046f2bb..bc5b073b7d 100644
--- a/kmelia/kmelia-library/src/integration-test/resources/arquillian.xml
+++ b/kmelia/kmelia-library/src/integration-test/resources/arquillian.xml
@@ -1,6 +1,6 @@
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <arquillian xmlns="http://jboss.org/schema/arquillian"
diff --git a/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/components/kmelia/dao/kmelia-dataset.xml b/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/components/kmelia/dao/kmelia-dataset.xml
index 550a71ca6b..ac00453751 100644
--- a/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/components/kmelia/dao/kmelia-dataset.xml
+++ b/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/components/kmelia/dao/kmelia-dataset.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/components/kmelia/repository/kmelia-dataset.xml b/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/components/kmelia/repository/kmelia-dataset.xml
index 550a71ca6b..ac00453751 100644
--- a/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/components/kmelia/repository/kmelia-dataset.xml
+++ b/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/components/kmelia/repository/kmelia-dataset.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/components/kmelia/search/kmelia-dataset.xml b/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/components/kmelia/search/kmelia-dataset.xml
index ea713a9568..d3586d2a0e 100644
--- a/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/components/kmelia/search/kmelia-dataset.xml
+++ b/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/components/kmelia/search/kmelia-dataset.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,12 +20,12 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -37,7 +37,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -45,7 +45,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/kmelia/settings/kmeliaSettings.properties b/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/kmelia/settings/kmeliaSettings.properties
index 995e9a08f7..ee531137e0 100644
--- a/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/kmelia/settings/kmeliaSettings.properties
+++ b/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/kmelia/settings/kmeliaSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 HomeNbPublications = 15
 HomeNbCols = 3
diff --git a/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/publication/publicationSettings.properties b/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/publication/publicationSettings.properties
index 81db8e279e..c39af6a3b6 100644
--- a/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/publication/publicationSettings.properties
+++ b/kmelia/kmelia-library/src/integration-test/resources/org/silverpeas/publication/publicationSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 attachmentsSubDirectory = attachments
 imagesSubDirectory = images
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmax/KmaxException.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmax/KmaxException.java
index 8be6e89d9e..ca6545d54c 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmax/KmaxException.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmax/KmaxException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmax;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmax/KmaxStatistics.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmax/KmaxStatistics.java
index 20c1ab8096..c43de54f3e 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmax/KmaxStatistics.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmax/KmaxStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmax;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/InstanceParameters.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/InstanceParameters.java
index a20f10e732..67fa0a3b49 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/InstanceParameters.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/InstanceParameters.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmaxInstancePostConstruction.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmaxInstancePostConstruction.java
index 8aa470147a..5f0c4b8a49 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmaxInstancePostConstruction.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmaxInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaComponentAuthorization.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaComponentAuthorization.java
index a1da863a2d..0d7bdd014b 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaComponentAuthorization.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaComponentAuthorization.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaContentManager.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaContentManager.java
index c0d91f9a27..bc9a703275 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaContentManager.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaContentManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaCopyDetail.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaCopyDetail.java
index 527cfdf8cd..a5c7a79598 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaCopyDetail.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaCopyDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaException.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaException.java
index d4ceefcbab..3bd4c11f9e 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaException.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaGlobalSilverpeasContentProcessor.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaGlobalSilverpeasContentProcessor.java
index 951f679436..f29df98914 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaGlobalSilverpeasContentProcessor.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaGlobalSilverpeasContentProcessor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaInstancePostConstruction.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaInstancePostConstruction.java
index c1c713dcec..895b07c303 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaInstancePostConstruction.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaPublicationHelper.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaPublicationHelper.java
index 50c95f6b05..0dff058250 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaPublicationHelper.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaPublicationHelper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaResourcePasting.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaResourcePasting.java
index edc641e265..0d6f7ecfb5 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaResourcePasting.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaResourcePasting.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaStatistics.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaStatistics.java
index 71acf15936..632da5e578 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaStatistics.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/KmeliaStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/PublicationImport.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/PublicationImport.java
index 2c6047dedd..50c6ee8b15 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/PublicationImport.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/PublicationImport.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/ToolboxInstancePostConstruction.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/ToolboxInstancePostConstruction.java
index 9bf34891dc..43a5491418 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/ToolboxInstancePostConstruction.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/ToolboxInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/dao/TopicSearchDao.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/dao/TopicSearchDao.java
index 740b4b6368..ee3fe52963 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/dao/TopicSearchDao.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/dao/TopicSearchDao.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.dao;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/dao/TopicSearchDaoImpl.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/dao/TopicSearchDaoImpl.java
index f7d1169343..4fc05ac53d 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/dao/TopicSearchDaoImpl.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/dao/TopicSearchDaoImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.dao;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/AbstractPublicationComparator.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/AbstractPublicationComparator.java
index 05c8e88cf5..ca8d626078 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/AbstractPublicationComparator.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/AbstractPublicationComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/FileDetail.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/FileDetail.java
index e1a385a2c9..a0186097e6 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/FileDetail.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/FileDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/FileFolder.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/FileFolder.java
index 36de24f19c..6dad57797c 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/FileFolder.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/FileFolder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmaxRuntimeException.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmaxRuntimeException.java
index 2d6d1d1625..484b730c0b 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmaxRuntimeException.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmaxRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaPublication.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaPublication.java
index 56a87036c6..8bcfee2338 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaPublication.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaPublication.java
@@ -1,5 +1,5 @@
 /*
- *  Copyright (C) 2000 - 2022 Silverpeas
+ *  Copyright (C) 2000 - 2024 Silverpeas
  *
  *  This program is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  *  Open Source Software ("FLOSS") applications as described in Silverpeas's
  *  FLOSS exception. You should have received a copy of the text describing
  *  the FLOSS exception, and it is also available here:
- *  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ *  "https://www.silverpeas.org/legal/floss_exception.html"
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  *  GNU Affero General Public License for more details.
  *
  *  You should have received a copy of the GNU Affero General Public License
- *  along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *  along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.model;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaPublicationComparator.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaPublicationComparator.java
index 7a8eeb71ac..9e14b1fbab 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaPublicationComparator.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaPublicationComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaPublicationSort.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaPublicationSort.java
index d241f35766..8ee3eace50 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaPublicationSort.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaPublicationSort.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.model;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaRuntimeException.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaRuntimeException.java
index f83ef9b35e..ff8da640dd 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaRuntimeException.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/KmeliaRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/MostInterestedQueryVO.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/MostInterestedQueryVO.java
index f58b715b4b..2c41ed92de 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/MostInterestedQueryVO.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/MostInterestedQueryVO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliAuthorComparator.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliAuthorComparator.java
index d532854cc2..c52fb57bc8 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliAuthorComparator.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliAuthorComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliCreationDateComparator.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliCreationDateComparator.java
index 11af12266e..5051c1d333 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliCreationDateComparator.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliCreationDateComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliDescriptionComparator.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliDescriptionComparator.java
index 4263e6e66d..157d397a19 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliDescriptionComparator.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliDescriptionComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliImportanceComparator.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliImportanceComparator.java
index 09380a00b2..fbdc8f9db0 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliImportanceComparator.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliImportanceComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliRankComparator.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliRankComparator.java
index f1d3cc562e..4721bdb4ab 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliRankComparator.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliRankComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliTitleComparator.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliTitleComparator.java
index 5315a026ac..e4602a2ba0 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliTitleComparator.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliTitleComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliUpdateDateComparator.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliUpdateDateComparator.java
index 0f7bd510d4..9715d38679 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliUpdateDateComparator.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/PubliUpdateDateComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/StatisticActivityVO.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/StatisticActivityVO.java
index 476aaf0239..749d373bda 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/StatisticActivityVO.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/StatisticActivityVO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/StatsFilterVO.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/StatsFilterVO.java
index d495b1ab4e..b55320d2b4 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/StatsFilterVO.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/StatsFilterVO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicComparator.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicComparator.java
index 47d352447a..38fee8c476 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicComparator.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicDetail.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicDetail.java
index f93fbc24e1..ad74601ac4 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicDetail.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicSearch.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicSearch.java
index 733f6a2942..0e4023e33d 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicSearch.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicSearch.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicSearchStatsVO.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicSearchStatsVO.java
index cf1c1195d9..93aa57b721 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicSearchStatsVO.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/TopicSearchStatsVO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/Treeview.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/Treeview.java
index a57bc355c2..7b70a05cd4 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/Treeview.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/model/Treeview.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.model;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaActionPublicationUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaActionPublicationUserNotification.java
index 2d2fafd805..dbdba47637 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaActionPublicationUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaActionPublicationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaFolderUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaFolderUserNotification.java
index 9ed9880a17..a256ec8ab3 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaFolderUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaFolderUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaPublicationUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaPublicationUserNotification.java
index e58fadf815..4dcb508390 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaPublicationUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaPublicationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaUserNotification.java
index 6904adde9e..3560f6c3c6 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/AbstractKmeliaUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmaxInstanceManualUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmaxInstanceManualUserNotification.java
index ad8e744b39..82ddc5e374 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmaxInstanceManualUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmaxInstanceManualUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.notification;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaDefermentPublicationUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaDefermentPublicationUserNotification.java
index 9ff3fc64a2..7d7ef7a6c6 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaDefermentPublicationUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaDefermentPublicationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaDelayedVisibilityUserNotificationReminder.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaDelayedVisibilityUserNotificationReminder.java
index 6272de34ab..9ef297227e 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaDelayedVisibilityUserNotificationReminder.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaDelayedVisibilityUserNotificationReminder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.notification;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaDelayedVisibilityUserNotificationReminderInitializer.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaDelayedVisibilityUserNotificationReminderInitializer.java
index 56867570a6..a236f72683 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaDelayedVisibilityUserNotificationReminderInitializer.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaDelayedVisibilityUserNotificationReminderInitializer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.notification;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaInstanceManualUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaInstanceManualUserNotification.java
index 5050e8d9b3..8003ba1f3b 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaInstanceManualUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaInstanceManualUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.notification;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaModificationPublicationUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaModificationPublicationUserNotification.java
index 49a557649d..caefef0f5d 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaModificationPublicationUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaModificationPublicationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNoMoreValidatorPublicationUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNoMoreValidatorPublicationUserNotification.java
index e1ba1fc58f..71018ede94 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNoMoreValidatorPublicationUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNoMoreValidatorPublicationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNotifyPublicationDocumentUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNotifyPublicationDocumentUserNotification.java
index 006f3ff4f1..40a7786bc0 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNotifyPublicationDocumentUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNotifyPublicationDocumentUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNotifyPublicationUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNotifyPublicationUserNotification.java
index 795814f549..561366c6a3 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNotifyPublicationUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNotifyPublicationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNotifyTopicUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNotifyTopicUserNotification.java
index 556b9a389a..870f634e6a 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNotifyTopicUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaNotifyTopicUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaPendingValidationPublicationUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaPendingValidationPublicationUserNotification.java
index f985e1f352..413a052685 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaPendingValidationPublicationUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaPendingValidationPublicationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaSubscriptionPublicationUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaSubscriptionPublicationUserNotification.java
index f60c3b0471..07226aafc2 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaSubscriptionPublicationUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaSubscriptionPublicationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaSupervisorPublicationUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaSupervisorPublicationUserNotification.java
index da6f430882..64dfd1da7c 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaSupervisorPublicationUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaSupervisorPublicationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaTopicUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaTopicUserNotification.java
index c487ff6079..8baa1cd396 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaTopicUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaTopicUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaValidationPublicationUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaValidationPublicationUserNotification.java
index b1ea384141..64ab187a23 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaValidationPublicationUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/KmeliaValidationPublicationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.notification;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/ToolboxInstanceManualUserNotification.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/ToolboxInstanceManualUserNotification.java
index 2ab113dd8a..cdeaf50cb0 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/ToolboxInstanceManualUserNotification.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/notification/ToolboxInstanceManualUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.notification;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/repository/TopicSearchJpaRepository.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/repository/TopicSearchJpaRepository.java
index d3e135a29a..85d65b543b 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/repository/TopicSearchJpaRepository.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/repository/TopicSearchJpaRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.repository;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/repository/TopicSearchRepository.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/repository/TopicSearchRepository.java
index aff2525bb0..6a20fc113c 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/repository/TopicSearchRepository.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/repository/TopicSearchRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.repository;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/search/KmeliaSearchServiceProvider.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/search/KmeliaSearchServiceProvider.java
index 54884aac6a..3baf7cef85 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/search/KmeliaSearchServiceProvider.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/search/KmeliaSearchServiceProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.search;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/search/TopicSearchService.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/search/TopicSearchService.java
index 501f5de344..3082488988 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/search/TopicSearchService.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/search/TopicSearchService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.search;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/search/TopicSearchServiceImpl.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/search/TopicSearchServiceImpl.java
index 594e8ae296..5b61f8086e 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/search/TopicSearchServiceImpl.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/search/TopicSearchServiceImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.search;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/security/authorization/KmaxInstancePublicationAccessControlExtension.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/security/authorization/KmaxInstancePublicationAccessControlExtension.java
index ec9bea122c..623a682ba4 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/security/authorization/KmaxInstancePublicationAccessControlExtension.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/security/authorization/KmaxInstancePublicationAccessControlExtension.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.security.authorization;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/security/authorization/KmeliaInstancePublicationAccessControlExtension.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/security/authorization/KmeliaInstancePublicationAccessControlExtension.java
index 1d5ba294e2..2f17a29ed9 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/security/authorization/KmeliaInstancePublicationAccessControlExtension.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/security/authorization/KmeliaInstancePublicationAccessControlExtension.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.security.authorization;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/security/authorization/ToolboxInstancePublicationAccessControlExtension.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/security/authorization/ToolboxInstancePublicationAccessControlExtension.java
index 29dceb14ab..7150b561e2 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/security/authorization/ToolboxInstancePublicationAccessControlExtension.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/security/authorization/ToolboxInstancePublicationAccessControlExtension.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.security.authorization;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/AbstractKmeliaSimulationElementLister.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/AbstractKmeliaSimulationElementLister.java
index cb0e3049af..0375fff3f8 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/AbstractKmeliaSimulationElementLister.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/AbstractKmeliaSimulationElementLister.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.service;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/CmisKmeliaContributionsProvider.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/CmisKmeliaContributionsProvider.java
index e88922b466..d519043a71 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/CmisKmeliaContributionsProvider.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/CmisKmeliaContributionsProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.service;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/DefaultKmeliaService.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/DefaultKmeliaService.java
index e972336090..67cce0d7b2 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/DefaultKmeliaService.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/DefaultKmeliaService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.service;
 
@@ -963,6 +963,12 @@ public void updatePublication(PublicationDetail pubDetail) {
     updatePublication(pubDetail, KmeliaHelper.PUBLICATION_HEADER, false);
   }
 
+  @Override
+  public void updatePublication(final PublicationDetail pubDetail,
+      final PdcClassification classification) {
+    updatePublication(pubDetail, classification, KmeliaHelper.PUBLICATION_HEADER, false);
+  }
+
   @Override
   public void updatePublication(PublicationDetail pubDetail, boolean forceUpdateDate) {
     updatePublication(pubDetail, KmeliaHelper.PUBLICATION_HEADER, forceUpdateDate);
@@ -970,6 +976,11 @@ public void updatePublication(PublicationDetail pubDetail, boolean forceUpdateDa
 
   private void updatePublication(PublicationDetail pubDetail, int updateScope,
       boolean forceUpdateDate) {
+    updatePublication(pubDetail, null, updateScope, forceUpdateDate);
+  }
+
+  private void updatePublication(PublicationDetail pubDetail, PdcClassification classification,
+      int updateScope, boolean forceUpdateDate) {
     KmeliaOperationContext.about(UPDATE);
     try {
       // if pubDetail is a clone
@@ -995,6 +1006,12 @@ private void updatePublication(PublicationDetail pubDetail, int updateScope,
         }
       }
 
+      if (classification != null) {
+        // classify the publication on the PdC if any
+        // subscribers are notified later (only if publication is valid)
+        classification.classifyContentOrClearClassificationIfEmpty(pubDetail, false);
+      }
+
       // Sending a subscription notification if the publication updated comes not from the
       // basket, has not been created or already updated from the same request
       if (!isPublicationInBasket && !hasPublicationBeenCreatedFromRequestContext(pubDetail) &&
@@ -1494,8 +1511,10 @@ public void addPublicationToTopicWithoutNotifications(PublicationPK pubPK, NodeP
       } else {
         publicationService.addFather(pubPK, fatherPK);
       }
-      // index publication to index path
-      publicationService.createIndex(pubPK);
+      // index publication to index path only if the publication is indexable
+      if (pubDetail.isIndexable()) {
+        publicationService.createIndex(pubPK);
+      }
     } catch (Exception e) {
       throw new KmeliaRuntimeException(e);
     }
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/DefaultToolBoxService.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/DefaultToolBoxService.java
index 27048fd481..64257fa64a 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/DefaultToolBoxService.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/DefaultToolBoxService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2021 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.service;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaAttachmentEventListener.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaAttachmentEventListener.java
index 7030729942..6e16301e66 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaAttachmentEventListener.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaAttachmentEventListener.java
@@ -1,5 +1,5 @@
 /*
- *  Copyright (C) 2000 - 2022 Silverpeas
+ *  Copyright (C) 2000 - 2024 Silverpeas
  *
  *  This program is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  *  Open Source Software ("FLOSS") applications as described in Silverpeas's
  *  FLOSS exception.  You should have recieved a copy of the text describing
  *  the FLOSS exception, and it is also available here:
- *  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ *  "https://www.silverpeas.org/legal/floss_exception.html"
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  *  GNU Affero General Public License for more details.
  *
  *  You should have received a copy of the GNU Affero General Public License
- *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
  *
  */
 package org.silverpeas.components.kmelia.service;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaContributionIndicatorInitializer.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaContributionIndicatorInitializer.java
index 9947ce621f..75b2ebfb6c 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaContributionIndicatorInitializer.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaContributionIndicatorInitializer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.service;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaHelper.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaHelper.java
index d6aecf00ab..5c90e078e2 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaHelper.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaHelper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaNodeSimulationElementLister.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaNodeSimulationElementLister.java
index eb001debfb..d770af5a4b 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaNodeSimulationElementLister.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaNodeSimulationElementLister.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.service;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaOperationContext.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaOperationContext.java
index ac8ed3cc8c..528963f0b6 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaOperationContext.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaOperationContext.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.service;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaPublicationBatchSimulationElementLister.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaPublicationBatchSimulationElementLister.java
index eb9b8f6f64..680984fc1a 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaPublicationBatchSimulationElementLister.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaPublicationBatchSimulationElementLister.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.service;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaPublicationSimulationElementLister.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaPublicationSimulationElementLister.java
index d5629cfc71..8f91eeed55 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaPublicationSimulationElementLister.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaPublicationSimulationElementLister.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.service;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaService.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaService.java
index 0b45830120..fac27c534b 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaService.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.service;
 
@@ -222,6 +222,15 @@ String createPublicationIntoTopic(PublicationDetail pubDetail, NodePK fatherPK,
    */
   void updatePublication(PublicationDetail detail);
 
+  /**
+   * Update a publication (only the header - parameters)
+   * @param detail a PublicationDetail
+   * @param classification the classification on the PdC of the publication content.
+   * @see org.silverpeas.core.contribution.publication.model.PublicationDetail
+   * @since 1.0
+   */
+  void updatePublication(PublicationDetail detail, PdcClassification classification);
+
   void updatePublication(PublicationDetail detail, boolean forceUpdateDate);
 
   /**
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaServiceContext.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaServiceContext.java
index 35cfc930f3..fab9cfbaab 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaServiceContext.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaServiceContext.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.service;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaUserEventListener.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaUserEventListener.java
index c923c157f6..a2f6623cc7 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaUserEventListener.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaUserEventListener.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.service;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaUserTreeViewFilter.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaUserTreeViewFilter.java
index dfcfe30d67..bb7ccf031f 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaUserTreeViewFilter.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaUserTreeViewFilter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.service;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaValidation.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaValidation.java
index c9e0344323..26ea7967a8 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaValidation.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaValidation.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.service;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaWysiwygEventListener.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaWysiwygEventListener.java
index 967c142854..2b9c959565 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaWysiwygEventListener.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaWysiwygEventListener.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.service;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaXmlFormUpdateContext.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaXmlFormUpdateContext.java
index 209fa471ac..69d4681f5e 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaXmlFormUpdateContext.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaXmlFormUpdateContext.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.service;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/stats/StatisticService.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/stats/StatisticService.java
index 372e841547..e641b73e1d 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/stats/StatisticService.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/stats/StatisticService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.stats;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/stats/StatisticServiceImpl.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/stats/StatisticServiceImpl.java
index 69d7d60c15..63cfa6ae00 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/stats/StatisticServiceImpl.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/stats/StatisticServiceImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.stats;
 
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/subscription/KmeliaSubscriptionService.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/subscription/KmeliaSubscriptionService.java
index d50f4c8172..d4194c24df 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/subscription/KmeliaSubscriptionService.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/subscription/KmeliaSubscriptionService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.subscription;
diff --git a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/workflowextensions/SendInKmelia.java b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/workflowextensions/SendInKmelia.java
index a70f5fb83a..90e96c6ba5 100644
--- a/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/workflowextensions/SendInKmelia.java
+++ b/kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/workflowextensions/SendInKmelia.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.workflowextensions;
 
diff --git a/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/service/KmeliaServiceContextTest.java b/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/service/KmeliaServiceContextTest.java
index 8aaf642c60..8070f4664f 100644
--- a/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/service/KmeliaServiceContextTest.java
+++ b/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/service/KmeliaServiceContextTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.service;
 
diff --git a/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/service/KmeliaUserTreeViewFilterTest.java b/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/service/KmeliaUserTreeViewFilterTest.java
index 36635f46ec..c18125d57e 100644
--- a/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/service/KmeliaUserTreeViewFilterTest.java
+++ b/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/service/KmeliaUserTreeViewFilterTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.service;
 
diff --git a/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/service/KmeliaValidationTest.java b/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/service/KmeliaValidationTest.java
index 332e43649c..0dc66f0a0d 100644
--- a/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/service/KmeliaValidationTest.java
+++ b/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/service/KmeliaValidationTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.service;
 
diff --git a/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/stats/StatisticServiceTest.java b/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/stats/StatisticServiceTest.java
index 29560a869f..34d2035d34 100644
--- a/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/stats/StatisticServiceTest.java
+++ b/kmelia/kmelia-library/src/test/java/org/silverpeas/components/kmelia/stats/StatisticServiceTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.stats;
diff --git a/kmelia/kmelia-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer b/kmelia/kmelia-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
index fc51b7e4fd..02b5b225ce 100644
--- a/kmelia/kmelia-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
+++ b/kmelia/kmelia-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception. You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 org.silverpeas.core.test.TestBeanContainer
\ No newline at end of file
diff --git a/kmelia/kmelia-war/pom.xml b/kmelia/kmelia-war/pom.xml
index 45deabef15..f2c117067d 100644
--- a/kmelia/kmelia-war/pom.xml
+++ b/kmelia/kmelia-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>kmelia</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.kmelia</groupId>
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmax/KmaxIndexer.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmax/KmaxIndexer.java
index c60e8e1b49..eec80f1c73 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmax/KmaxIndexer.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmax/KmaxIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmax;
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/FileImport.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/FileImport.java
index 2b3ea5c428..3003f664b9 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/FileImport.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/FileImport.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/KmeliaConstants.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/KmeliaConstants.java
index 61599ded98..5555c4c300 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/KmeliaConstants.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/KmeliaConstants.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia;
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/KmeliaIndexer.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/KmeliaIndexer.java
index c31be436f2..3ff3e518bb 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/KmeliaIndexer.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/KmeliaIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia;
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/KmeliaTransversal.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/KmeliaTransversal.java
index 18ddc7d852..1d18e1a7c0 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/KmeliaTransversal.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/KmeliaTransversal.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/RssLastPublicationsServlet.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/RssLastPublicationsServlet.java
index 307bf22ee0..1bc4dbd98d 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/RssLastPublicationsServlet.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/RssLastPublicationsServlet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/SearchContext.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/SearchContext.java
index 8d216fe4b0..9534c035e2 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/SearchContext.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/SearchContext.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/ToolboxIndexer.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/ToolboxIndexer.java
index d2aa2616fe..988f96812a 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/ToolboxIndexer.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/ToolboxIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia;
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/control/KmeliaSessionController.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/control/KmeliaSessionController.java
index 459aadd383..fc52bbb71e 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/control/KmeliaSessionController.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/control/KmeliaSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.control;
 
@@ -758,15 +758,16 @@ public synchronized NodePK addSubTopic(NodeDetail nd, String alertType, String p
     nd.setCreatorId(getUserId());
     NodePK pk = getKmeliaService().addSubTopic(getNodePK(parentId), nd, alertType);
 
-    // by default, setting father's admin rights
-    // to preventing no more access
-    if (nd.haveRights()) {
+    // by default, sets father's admin rights in the case of specific rights
+    // to prevent no access to users having some rights with the father topic
+    NodeDetail created = getNodeHeader(pk.getId());
+    if (created.haveLocalRights()) {
       ProfileInst parentProfile;
       String profileAdmin = SilverpeasRole.ADMIN.getName();
       if (NodePK.ROOT_NODE_ID.equals(parentId)) {
         parentProfile = getProfile(profileAdmin);
       } else {
-        parentProfile = getTopicProfile(profileAdmin, parentId);
+        parentProfile = getRecursiveTopicProfile(profileAdmin, parentId);
       }
       if (parentProfile != null) {
         updateTopicRole(profileAdmin, pk.getId(),
@@ -828,12 +829,10 @@ public synchronized String createPublication(PublicationDetail pubDetail,
     if (isKmaxMode) {
       result = getKmeliaService().createKmaxPublication(pubDetail);
     } else {
-      if (classification.isUndefined()) {
+      if (classification == null || classification.isUndefined()) {
         result = getKmeliaService().createPublicationIntoTopic(pubDetail, getCurrentFolderPK());
       } else {
-        List<PdcPosition> pdcPositions = classification.getPdcPositions();
-        PdcClassification withClassification =
-            aPdcClassificationOfContent(pubDetail).withPositions(pdcPositions);
+        PdcClassification withClassification = getPdcClassification(pubDetail, classification);
         result = getKmeliaService()
             .createPublicationIntoTopic(pubDetail, getCurrentFolderPK(), withClassification);
       }
@@ -853,7 +852,12 @@ public synchronized void addUploadedFilesToPublication(Collection<UploadedFile>
         pubDetail.getLanguage()));
   }
 
-  public synchronized void updatePublication(PublicationDetail pubDetail) {
+  public synchronized void updatePublication(final PublicationDetail pubDetail) {
+    updatePublication(pubDetail, null);
+  }
+
+  public synchronized void updatePublication(final PublicationDetail pubDetail,
+      final PdcClassificationEntity classification) {
     pubDetail.getPK().setSpace(getSpaceId());
     pubDetail.getPK().setComponentName(getComponentId());
     pubDetail.setUpdaterId(getUserId());
@@ -875,10 +879,21 @@ public synchronized void updatePublication(PublicationDetail pubDetail) {
         // clone must not be indexed
         pubDetail.setIndexOperation(IndexManager.NONE);
       }
-      getKmeliaService().updatePublication(pubDetail);
+      if (classification == null) {
+        getKmeliaService().updatePublication(pubDetail);
+      } else {
+        PdcClassification withClassification = getPdcClassification(pubDetail, classification);
+        getKmeliaService().updatePublication(pubDetail, withClassification);
+      }
     }
   }
 
+  private static PdcClassification getPdcClassification(final PublicationDetail pubDetail,
+      final PdcClassificationEntity classification) {
+    final List<PdcPosition> pdcPositions = classification.getPdcPositions();
+    return aPdcClassificationOfContent(pubDetail).withPositions(pdcPositions);
+  }
+
   public boolean isCloneNeeded() {
     if (getSessionPublication() == null) {
       return false;
@@ -2077,6 +2092,21 @@ public ProfileInst getProfile(String role) {
     }
   }
 
+  private ProfileInst getRecursiveTopicProfile(String role, String topicId) {
+    String currentId = topicId;
+    ProfileInst profile = getTopicProfile(role, currentId);
+    while (profile.isEmpty()) {
+      NodeDetail topic = getNodeHeader(currentId);
+      currentId = topic.getFatherPK().getId();
+      if (currentId.equals(NodePK.ROOT_NODE_ID)) {
+        profile = getProfile(role);
+      } else {
+        profile = getTopicProfile(role, currentId);
+      }
+    }
+    return profile;
+  }
+
   public List<ProfileInst> getTopicProfiles() {
     return getTopicProfiles(getCurrentFolderId());
   }
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DefaultExportFileNameProducer.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DefaultExportFileNameProducer.java
index 59217bb9c3..443fcf814d 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DefaultExportFileNameProducer.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DefaultExportFileNameProducer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,14 +11,14 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.export;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DocumentBuildException.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DocumentBuildException.java
index 7e578845c4..f351fa8920 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DocumentBuildException.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DocumentBuildException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,14 +11,14 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.export;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DocumentMergeException.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DocumentMergeException.java
index 9debd692f1..35bc67cec4 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DocumentMergeException.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DocumentMergeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.export;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DocumentTemplateParts.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DocumentTemplateParts.java
index 846ba0fe8f..68a4794f06 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DocumentTemplateParts.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/DocumentTemplateParts.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,14 +11,14 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.export;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ExportFileNameProducer.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ExportFileNameProducer.java
index 865e6e9020..aca202c06c 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ExportFileNameProducer.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ExportFileNameProducer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,14 +11,14 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.export;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/KmeliaPublicationExporter.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/KmeliaPublicationExporter.java
index 14ed4e63b2..739dc58341 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/KmeliaPublicationExporter.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/KmeliaPublicationExporter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,14 +11,14 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.export;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ODTDocumentBuilder.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ODTDocumentBuilder.java
index 93faa08829..da0212063d 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ODTDocumentBuilder.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ODTDocumentBuilder.java
@@ -1,5 +1,5 @@
 /*
- *  Copyright (C) 2000 - 2022 Silverpeas
+ *  Copyright (C) 2000 - 2024 Silverpeas
  *
  *  This program is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  *  Open Source Software ("FLOSS") applications as described in Silverpeas's
  *  FLOSS exception.  You should have recieved a copy of the text describing
  *  the FLOSS exception, and it is also available here:
- *  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ *  "https://www.silverpeas.org/legal/floss_exception.html"
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  *  GNU Affero General Public License for more details.
  *
  *  You should have received a copy of the GNU Affero General Public License
- *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.export;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ODTDocumentTextTranslator.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ODTDocumentTextTranslator.java
index 4b77f14a1b..d1b7382260 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ODTDocumentTextTranslator.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ODTDocumentTextTranslator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.export;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ODTDocumentsMerging.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ODTDocumentsMerging.java
index e4de3f96c3..93b5ce5610 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ODTDocumentsMerging.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/ODTDocumentsMerging.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.export;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/SilverpeasImageFinder.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/SilverpeasImageFinder.java
index e617bbdc0f..2b2abfe519 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/SilverpeasImageFinder.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/SilverpeasImageFinder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.export;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/SimpleDocumentHolder.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/SimpleDocumentHolder.java
index e0ba91061e..42d01ed127 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/SimpleDocumentHolder.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/export/SimpleDocumentHolder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,14 +11,14 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.export;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/importexport/KmeliaImportExport.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/importexport/KmeliaImportExport.java
index 816b70f1d3..a7eb5845f9 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/importexport/KmeliaImportExport.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/importexport/KmeliaImportExport.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.importexport;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/jstl/KmeliaDisplayHelper.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/jstl/KmeliaDisplayHelper.java
index f8cbaef247..dfac01aa56 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/jstl/KmeliaDisplayHelper.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/jstl/KmeliaDisplayHelper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.jstl;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/notification/VersionSupportUpdater.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/notification/VersionSupportUpdater.java
index 52d9220122..b2a663579c 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/notification/VersionSupportUpdater.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/notification/VersionSupportUpdater.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.notification;
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/portlets/LastPublicationsPortlet.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/portlets/LastPublicationsPortlet.java
index 53ab4b42a1..b3920f0dc1 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/portlets/LastPublicationsPortlet.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/portlets/LastPublicationsPortlet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.portlets;
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/AjaxPublicationsListServlet.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/AjaxPublicationsListServlet.java
index e91838e555..9cce0c07cb 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/AjaxPublicationsListServlet.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/AjaxPublicationsListServlet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/AjaxServlet.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/AjaxServlet.java
index 81578503ee..c63ae1e156 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/AjaxServlet.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/AjaxServlet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/JSONServlet.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/JSONServlet.java
index 8fbfc0fcaa..fef9a788cd 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/JSONServlet.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/JSONServlet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets;
 
@@ -39,7 +39,10 @@
 import javax.servlet.http.HttpServletResponse;
 import java.io.IOException;
 import java.io.Writer;
+import java.util.Collection;
 
+import static java.util.Optional.ofNullable;
+import static java.util.function.Predicate.not;
 import static org.silverpeas.core.web.selection.BasketSelectionUI.displayPutIntoBasketSelectionShortcut;
 
 public class JSONServlet extends HttpServlet {
@@ -128,7 +131,9 @@ private void addPublicationOperations(final KmeliaSessionController kmeliaSC,
     boolean addPublicationAllowed = !role.isUser() && publicationsInTopic;
     boolean operationsOnSelectionAllowed =
         (role.isAdmin() || role.isPublisher()) && publicationsInTopic;
-    boolean somePublicationsExist = !kmeliaSC.getSessionPublicationsList().isEmpty();
+    boolean somePublicationsExist = ofNullable(kmeliaSC.getSessionPublicationsList())
+        .filter(not(Collection::isEmpty))
+        .isPresent();
     boolean oneTemplateUsed = kmeliaSC.getXmlFormForPublications() != null;
     boolean copyCutAllowed = operationsOnSelectionAllowed && somePublicationsExist;
     boolean notRootNotAnonymous = !isRoot && !user.isAnonymous();
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/KmeliaActionAccessController.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/KmeliaActionAccessController.java
index b1632da694..724a9b7fcb 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/KmeliaActionAccessController.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/KmeliaActionAccessController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.kmelia.servlets;
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/KmeliaRequestRouter.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/KmeliaRequestRouter.java
index 0cea6177ab..f1e7b6ff49 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/KmeliaRequestRouter.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/KmeliaRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets;
 
@@ -63,6 +63,7 @@
 import org.silverpeas.core.io.upload.UploadedFile;
 import org.silverpeas.core.node.model.NodeDetail;
 import org.silverpeas.core.node.model.NodePK;
+import org.silverpeas.core.pdc.pdc.model.ClassifyPosition;
 import org.silverpeas.core.security.authorization.PublicationAccessControl;
 import org.silverpeas.core.subscription.SubscriptionResource;
 import org.silverpeas.core.util.DateUtil;
@@ -375,8 +376,14 @@ public String getDestination(String function, KmeliaSessionController kmelia,
       } else if ("ToPublicationHeader".equals(function)) {
         String action = (String) request.getAttribute("Action");
         if ("UpdateView".equals(action)) {
-          request.setAttribute("AttachmentsEnabled", false);
           request.setAttribute("TaxonomyOK", kmelia.isPublicationTaxonomyOK());
+          List<ClassifyPosition> positions = kmelia.getSessionPubliOrClone().getPDCPositions();
+          boolean isPublicationClassifiedOnPDC = true;
+          if (positions.isEmpty()) {
+            isPublicationClassifiedOnPDC = false;
+          }
+          request.setAttribute("isPublicationClassifiedOnPDC", isPublicationClassifiedOnPDC);
+          request.setAttribute("AttachmentsEnabled", false);
           request.setAttribute("ValidatorsOK", kmelia.isPublicationValidatorsOK());
           request.setAttribute("Publication", kmelia.getSessionPubliOrClone());
           setupRequestForContributionManagementContext(request,
@@ -387,6 +394,7 @@ public String getDestination(String function, KmeliaSessionController kmelia,
           request.setAttribute("AttachmentsEnabled", kmelia.isAttachmentsEnabled());
           request.setAttribute("TaxonomyOK", true);
           request.setAttribute("ValidatorsOK", true);
+          request.setAttribute("isPublicationClassifiedOnPDC", false);
         }
 
         request.setAttribute("Path", kmelia.getTopicPath(kmelia.getCurrentFolderId()));
@@ -423,7 +431,7 @@ public String getDestination(String function, KmeliaSessionController kmelia,
 
           destination = rootDestination + "addTopic.jsp";
         }
-      } else if ("ToUpdateTopic".equals(function)) {
+      } else if ("ToModifyTopic".equals(function)) {
         String id = request.getParameter("Id");
         NodeDetail node = kmelia.getSubTopicDetail(id);
         if (!SilverpeasRole.ADMIN.isInRole(kmelia.getUserTopicProfile(id)) &&
@@ -553,7 +561,7 @@ public String getDestination(String function, KmeliaSessionController kmelia,
         request.setAttribute("Profile", kmelia.getProfile());
         request.setAttribute("VisiblePublicationId", pubDetail.getPK().getId());
         request.setAttribute("UserCanValidate", kmelia.isUserCanValidatePublication());
-        request.setAttribute("TaxonomyOK", kmelia.isPublicationTaxonomyOK());
+        request.setAttribute("TaxonomyOK", true);
         request.setAttribute("ValidatorsOK", kmelia.isPublicationValidatorsOK());
 
         putXMLDisplayerIntoRequest(kmeliaPublication.getDetail(), kmelia, request);
@@ -926,6 +934,7 @@ public String getDestination(String function, KmeliaSessionController kmelia,
         extraFormPageContext.setObjectId(volatilePublication.getPK().getId());
         extraFormPageContext.setNodeId(kmelia.getCurrentFolderId());
         extraFormPageContext.setLanguage(kmelia.getLanguage());
+        extraFormPageContext.setCreation(true);
         request.setAttribute("ExtraFormPageContext", extraFormPageContext);
 
         destination = getDestination("ToPublicationHeader", kmelia, request);
@@ -935,12 +944,7 @@ public String getDestination(String function, KmeliaSessionController kmelia,
         List<FileItem> parameters = request.getFileItems();
 
         // create publication
-        String positions = FileUploadUtil.getParameter(parameters, "KmeliaPubPositions");
-        PdcClassificationEntity withClassification =
-            PdcClassificationEntity.undefinedClassification();
-        if (StringUtil.isDefined(positions)) {
-          withClassification = PdcClassificationEntity.fromJSON(positions);
-        }
+        PdcClassificationEntity withClassification = getPdcClassification(kmelia, parameters);
         PublicationDetail pubDetail = getPublicationDetail(parameters, kmelia);
         String newPubId = kmelia.createPublication(pubDetail, withClassification);
 
@@ -977,12 +981,13 @@ public String getDestination(String function, KmeliaSessionController kmelia,
       } else if ("UpdatePublication".equals(function)) {
         List<FileItem> parameters = request.getFileItems();
 
+        PdcClassificationEntity withClassification = getPdcClassification(kmelia, parameters);
         PublicationDetail pubDetail = getPublicationDetail(parameters, kmelia);
         String pubId = pubDetail.getPK().getId();
         ThumbnailController.processThumbnail(new ResourceReference(pubId, kmelia.getComponentId()),
             parameters);
 
-        kmelia.updatePublication(pubDetail);
+        kmelia.updatePublication(pubDetail, withClassification);
 
         if(kmelia.isReminderUsed()) {
           kmelia.updatePublicationReminder(pubId, parameters);
@@ -1522,6 +1527,18 @@ else if (function.equals("KmaxMain")) {
     return destination;
   }
 
+  private static PdcClassificationEntity getPdcClassification(final KmeliaSessionController kmelia,
+      final List<FileItem> parameters) {
+    PdcClassificationEntity withClassification = PdcClassificationEntity.undefinedClassification();
+    if (kmelia.isPdcUsed()) {
+      final String positions = FileUploadUtil.getParameter(parameters, "KmeliaPubPositions");
+      if (StringUtil.isDefined(positions)) {
+        withClassification = PdcClassificationEntity.fromJSON(positions);
+      }
+    }
+    return withClassification;
+  }
+
   private String processDocumentNotFoundException(final HttpRequest request,
       final KmeliaSessionController kmelia, final Exception e) {
     final String destination;
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/PublicationFragmentSettings.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/PublicationFragmentSettings.java
index 1731c52ec4..dae70a8131 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/PublicationFragmentSettings.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/PublicationFragmentSettings.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/AjaxHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/AjaxHandler.java
index 74de22ff3c..acfad6d98d 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/AjaxHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/AjaxHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/AjaxOperation.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/AjaxOperation.java
index 223c887a5b..31b2ba75f2 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/AjaxOperation.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/AjaxOperation.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/BindToPubliHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/BindToPubliHandler.java
index 4e2d21f40d..8784b17605 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/BindToPubliHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/BindToPubliHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/CopyPublicationsHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/CopyPublicationsHandler.java
index 10f02c54b2..84bf387d56 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/CopyPublicationsHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/CopyPublicationsHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/CutPublicationsHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/CutPublicationsHandler.java
index 5f980757c3..064149dc97 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/CutPublicationsHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/CutPublicationsHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/DeleteHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/DeleteHandler.java
index f216bffa56..52fc4038e6 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/DeleteHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/DeleteHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/DeletePublicationsHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/DeletePublicationsHandler.java
index 95908014e8..13ea27f80c 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/DeletePublicationsHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/DeletePublicationsHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/EmptyTrashHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/EmptyTrashHandler.java
index 67c933dc90..093c783964 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/EmptyTrashHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/EmptyTrashHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetClipboardStateHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetClipboardStateHandler.java
index 7f3beb51d0..bf90c5ea9d 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetClipboardStateHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetClipboardStateHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetProfileHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetProfileHandler.java
index 9afbf9d9f6..10dc48ab57 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetProfileHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetProfileHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetPublicationAuthorizationsHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetPublicationAuthorizationsHandler.java
index 0aa1372f1a..59bb9d996e 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetPublicationAuthorizationsHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetPublicationAuthorizationsHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetTopicWysiwygHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetTopicWysiwygHandler.java
index e00d4ffc34..7db4bb4f59 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetTopicWysiwygHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/GetTopicWysiwygHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/MovePublicationHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/MovePublicationHandler.java
index 36b90a14bb..95853b1d27 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/MovePublicationHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/MovePublicationHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/OperationOnPublicationsHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/OperationOnPublicationsHandler.java
index 380bdf00d2..ec7a3c03da 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/OperationOnPublicationsHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/OperationOnPublicationsHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/PasteHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/PasteHandler.java
index ff3d484ee0..72eacde3aa 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/PasteHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/PasteHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/RenameTopicHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/RenameTopicHandler.java
index 952f65fbc8..4ce8f3a462 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/RenameTopicHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/RenameTopicHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/SelectAllPublicationsHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/SelectAllPublicationsHandler.java
index 512ed968ad..f7d1f21e9b 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/SelectAllPublicationsHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/SelectAllPublicationsHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/SortTopicsHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/SortTopicsHandler.java
index 55f1ea7897..3642f632ee 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/SortTopicsHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/SortTopicsHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/UnbindToPubliHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/UnbindToPubliHandler.java
index 539c4da361..bcb968cd9a 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/UnbindToPubliHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/UnbindToPubliHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/UpdateTopicStatusHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/UpdateTopicStatusHandler.java
index 4dce2ebde7..a619a519ff 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/UpdateTopicStatusHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/ajax/handlers/UpdateTopicStatusHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.ajax.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/handlers/StatisticRequestHandler.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/handlers/StatisticRequestHandler.java
index 8d66c47003..45180facc1 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/handlers/StatisticRequestHandler.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/handlers/StatisticRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.servlets.handlers;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/ui/ResultSearchRenderer.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/ui/ResultSearchRenderer.java
index fcaae63a2c..87d1c8efa1 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/ui/ResultSearchRenderer.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/ui/ResultSearchRenderer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.ui;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/web/FolderResource.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/web/FolderResource.java
index d52b0b4412..f46cd4be7d 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/web/FolderResource.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/web/FolderResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.web;
 
diff --git a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/web/KmeliaResource.java b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/web/KmeliaResource.java
index 584ad6d49b..b7df78269d 100644
--- a/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/web/KmeliaResource.java
+++ b/kmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/web/KmeliaResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.kmelia.web;
 
diff --git a/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/dragAndDrop.tag b/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/dragAndDrop.tag
index b3fd50db71..fccde5e821 100644
--- a/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/dragAndDrop.tag
+++ b/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/dragAndDrop.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
   
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
   
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/paste.tag b/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/paste.tag
index 2a6f338b7e..8c1ccfce14 100644
--- a/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/paste.tag
+++ b/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/paste.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
   
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
   
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/searchZone.tag b/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/searchZone.tag
index 3c33d857b3..a8336036bc 100644
--- a/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/searchZone.tag
+++ b/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/searchZone.tag
@@ -3,7 +3,7 @@
 <%@ tag import="org.silverpeas.components.kmelia.SearchContext" %>
 <%@ tag import="org.silverpeas.core.contribution.content.form.PagesContext" %>
 <%@ tag import="org.silverpeas.core.admin.user.model.User" %><%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
   
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -15,7 +15,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -23,7 +23,7 @@
   GNU Affero General Public License for more details.
   
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
@@ -43,7 +43,9 @@
   SearchContext searchContext = (SearchContext) request.getAttribute("SearchContext");
   String query = "";
   PagesContext formContext = new PagesContext();
-  formContext.setLanguage(User.getCurrentRequester().getUserPreferences().getLanguage());
+  final User currentRequester = User.getCurrentRequester();
+  formContext.setUserId(currentRequester.getId());
+  formContext.setLanguage(currentRequester.getUserPreferences().getLanguage());
   if (searchContext != null) {
     query = searchContext.getQuery();
     formContext = searchContext.getFormContext();
diff --git a/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/seeAlso.tag b/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/seeAlso.tag
index 5414dc793f..35ea78775a 100644
--- a/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/seeAlso.tag
+++ b/kmelia/kmelia-war/src/main/webapp/WEB-INF/tags/silverpeas/kmelia/seeAlso.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
   
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
   
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/kmelia/kmelia-war/src/main/webapp/WEB-INF/web.xml b/kmelia/kmelia-war/src/main/webapp/WEB-INF/web.xml
index 3a0d9ba6af..a85ab5dd6e 100644
--- a/kmelia/kmelia-war/src/main/webapp/WEB-INF/web.xml
+++ b/kmelia/kmelia-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <web-app>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/addTopic.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/addTopic.jsp
index 3ece1f2121..522ae5a4dd 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/addTopic.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/addTopic.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.util.MultiSilverpeasBundle"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/attachmentLinkManagement.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/attachmentLinkManagement.jsp
index 9afd1e34b6..77f831f9cc 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/attachmentLinkManagement.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/attachmentLinkManagement.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/attachmentManager.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/attachmentManager.jsp
index ad96a2ae8c..557eb4cdb8 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/attachmentManager.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/attachmentManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/basket.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/basket.jsp
index eb0df71706..4584cc8b00 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/basket.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/basket.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/checkKmelia.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/checkKmelia.jsp
index 434e044383..60ddb73e55 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/checkKmelia.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/checkKmelia.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/clone.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/clone.jsp
index fba37658db..3baa3a003b 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/clone.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/clone.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/closeWindow.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/closeWindow.jsp
index 9451b76f97..3ac64294b8 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/closeWindow.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/closeWindow.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/defermentMotive.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/defermentMotive.jsp
index 73a73e9017..fb6ee8ff6c 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/defermentMotive.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/defermentMotive.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/importMultiFiles.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/importMultiFiles.jsp
index 9b65eb5451..86cfd30c0f 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/importMultiFiles.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/importMultiFiles.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/importOneFile.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/importOneFile.jsp
index cff7b8f771..29e1f3f0fd 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/importOneFile.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/importOneFile.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/javaScript/navigation.js b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/javaScript/navigation.js
index de46de76dd..653750a5df 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/javaScript/navigation.js
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/javaScript/navigation.js
@@ -776,7 +776,7 @@ function topicUpdate(id) {
   const translation = getTranslation();
   const rightsOnTopic = params["rightsOnTopic"];
   if (rightsOnTopic) {
-    location.href = "ToUpdateTopic?Id=" + id + "&Translation=" + translation;
+    location.href = "ToModifyTopic?Id=" + id + "&Translation=" + translation;
   } else {
     document.topicForm.action = "UpdateTopic";
     $("#addOrUpdateNode #topicId").val(id);
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax.jsp
index 166ee65cfb..65f30bcb3f 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_addAxis.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_addAxis.jsp
index 7a2257961d..28718ef13c 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_addAxis.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_addAxis.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_addPositionToAxis.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_addPositionToAxis.jsp
index 3f299a6f7c..cb1a5967ba 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_addPositionToAxis.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_addPositionToAxis.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_addPositionToPosition.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_addPositionToPosition.jsp
index 8161d7f84b..33076cae24 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_addPositionToPosition.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_addPositionToPosition.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_axisManager.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_axisManager.jsp
index e4d71023cd..28e9f9a685 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_axisManager.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_axisManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_axisReport.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_axisReport.jsp
index 749271c933..b341f6a1d7 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_axisReport.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_axisReport.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_portlet.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_portlet.jsp
index 84d5570835..b1ee7d1b59 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_portlet.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_portlet.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_viewCombination.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_viewCombination.jsp
index c87d252bc7..09ea2bd84d 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_viewCombination.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/kmax_viewCombination.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/modelUsedList.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/modelUsedList.jsp
index 5fcf4adc39..6f4e4ebb49 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/modelUsedList.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/modelUsedList.jsp
@@ -1,7 +1,7 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/modelsList.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/modelsList.jsp
index 1a14120085..e3d83e6e03 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/modelsList.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/modelsList.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/oneLevel.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/oneLevel.jsp
index 9f8575d082..7297dceadf 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/oneLevel.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/oneLevel.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -29,12 +29,12 @@
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
 <%@ taglib uri="http://www.silverpeas.com/tld/viewGenerator" prefix="view"%>
+<%@ taglib uri="http://www.silverpeas.com/tld/silverFunctions" prefix="silfn" %>
 <%@ taglib tagdir="/WEB-INF/tags/silverpeas/kmelia" prefix="kmelia" %>
 <%@page import="org.silverpeas.components.kmelia.SearchContext"%>
 <%@page import="org.silverpeas.core.admin.user.model.SilverpeasRole"%>
 <%@ page import="org.silverpeas.core.i18n.I18NHelper" %>
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.browsebars.BrowseBar" %>
-<%@ page import="org.silverpeas.core.web.util.viewgenerator.html.buttons.Button" %>
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.operationpanes.OperationPane" %>
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.window.Window" %>
 <%@ page import="org.silverpeas.core.webapi.node.NodeType" %>
@@ -44,395 +44,395 @@
 <view:setBundle bundle="${requestScope.resources.multilangBundle}" />
 
 <c:set var='highestUserRole' value='<%=SilverpeasRole.fromString((String) request.getAttribute("Profile"))%>'/>
-
+<c:set var="displaySearch" value="${silfn:booleanValue(requestScope.DisplaySearch)}"/>
+<c:set var="componentId" value="<%=componentId%>"/>
 <%
-String    rootId        = "0";
-
-String   profile      = (String) request.getAttribute("Profile");
-String  translation   = (String) request.getAttribute("Language");
-boolean displayNBPublis = ((Boolean) request.getAttribute("DisplayNBPublis")).booleanValue();
-Boolean rightsOnTopics  = (Boolean) request.getAttribute("RightsOnTopicsEnabled");
-Boolean displaySearch  = (Boolean) request.getAttribute("DisplaySearch");
-int    currentPageIndex = (Integer) request.getAttribute("PageIndex");
-
-SearchContext searchContext = (SearchContext) request.getAttribute("SearchContext");
-String query = "";
-if (searchContext != null) {
-  query = searchContext.getQuery();
-}
+  String    rootId        = "0";
 
-String id     = (String) request.getAttribute("CurrentFolderId");
+  String   profile      = (String) request.getAttribute("Profile");
+  String  translation   = (String) request.getAttribute("Language");
+  boolean displayNBPublis = ((Boolean) request.getAttribute("DisplayNBPublis")).booleanValue();
+  Boolean rightsOnTopics  = (Boolean) request.getAttribute("RightsOnTopicsEnabled");
+  int    currentPageIndex = (Integer) request.getAttribute("PageIndex");
 
-String    pubIdToHighlight  = (String) request.getAttribute("PubIdToHighlight"); //used when we have found publication from search (only toolbox)
+  SearchContext searchContext = (SearchContext) request.getAttribute("SearchContext");
 
-String language = kmeliaScc.getLanguage();
+  String id     = (String) request.getAttribute("CurrentFolderId");
+  String    pubIdToHighlight  = (String) request.getAttribute("PubIdToHighlight"); //used when we have found publication from search (only toolbox)
+  String language = kmeliaScc.getLanguage();
 
-if (id == null) {
-  id = rootId;
-}
+  if (id == null) {
+    id = rootId;
+  }
 
-String userId = kmeliaScc.getUserId();
+  String userId = kmeliaScc.getUserId();
 %>
 
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" id="ng-app" ng-app="silverpeas.kmelia">
-<head>
-<view:looknfeel withCheckFormScript="true"/>
-<view:script src="/util/javaScript/browseBarComplete.js"/>
-<view:includePlugin name="datepicker" />
-<view:includePlugin name="subscription"/>
-<view:includePlugin name="preview"/>
-<view:includePlugin name="rating" />
-<view:includePlugin name="basketSelection"/>
-
-<view:script src="javaScript/navigation.js"/>
-<view:script src="javaScript/searchInTopic.js"/>
-<view:script src="javaScript/publications.js"/>
-
-<script type="text/javascript">
-
-  <%--The below triggered function has to be defined as soon as possible in HTML code in order to
-  increase chances to perform the treatment when "menuRender" event is fired --%>
-  $(document).ready(function() {
-    menuRenderedPromise.then(function(){
-
-      sp.i18n.load({
-        bundle : 'org.silverpeas.kmelia.multilang.kmeliaBundle',
-        language : '<%=language%>'
+<view:sp-page>
+  <view:sp-head-part withCheckFormScript="true">
+    <view:script src="/util/javaScript/browseBarComplete.js"/>
+    <view:includePlugin name="datepicker" />
+    <view:includePlugin name="subscription"/>
+    <view:includePlugin name="preview"/>
+    <view:includePlugin name="rating" />
+    <view:includePlugin name="basketSelection"/>
+
+    <view:script src="javaScript/navigation.js"/>
+    <view:script src="javaScript/searchInTopic.js"/>
+    <view:script src="javaScript/publications.js"/>
+
+    <script type="text/javascript">
+      var isSearchTopicEnabled = ${displaySearch};
+
+      <%--The below triggered function has to be defined as soon as possible in HTML code in order to
+      increase chances to perform the treatment when "menuRender" event is fired --%>
+      $(document).ready(function() {
+        menuRenderedPromise.then(function(){
+
+          sp.i18n.load({
+            bundle : 'org.silverpeas.kmelia.multilang.kmeliaBundle',
+            language : '<%=language%>'
+          });
+          displayTopicContent('<%=id%>');
+        });
       });
 
-      displayTopicContent('<%=id%>');
-
-      <% if (displaySearch.booleanValue()) { %>
-      document.getElementById("topicQuery").focus();
-      <% } %>
-    });
-  });
-
-function topicGoTo(id) {
-    closeWindows();
-    displayTopicContent(id);
-}
-
-function getCurrentUserId() {
-  return "<%=userId%>";
-}
-
-function getWebContext() {
-  return "<%=m_context%>";
-}
-
-function getComponentId() {
-  return "<%=componentId%>";
-}
-
-function getComponentLabel() {
-  return "<%=WebEncodeHelper.javaStringToJsString(componentLabel)%>";
-}
-
-function getLanguage() {
-  return "<%=language%>";
-}
-
-function getPubIdToHighlight() {
-  return "<%=pubIdToHighlight%>";
-}
-
-function getTranslation() {
-  return "<%=translation%>";
-}
-
-function getToValidateFolderId() {
-  return "<%=KmeliaHelper.SPECIALFOLDER_TOVALIDATE%>";
-}
-
-function getNonVisiblePubsFolderId() {
-  return "<%=KmeliaHelper.SPECIALFOLDER_NONVISIBLEPUBS%>";
-}
-
-function isSpecialFolder(id) {
-  return id === getToValidateFolderId() || id === getNonVisiblePubsFolderId();
-}
-</script>
-</head>
-<body id="kmelia" onunload="closeWindows();">
-<div compile-directive style="display: none"></div>
-<div id="<%=componentId %>" class="<%=profile%>">
-<%
-  Window window = gef.getWindow();
-  BrowseBar browseBar = window.getBrowseBar();
-  browseBar.setI18N("GoToCurrentTopic", translation);
+      function topicGoTo(id) {
+        closeWindows();
+        displayTopicContent(id);
+
+      }
+
+      function getCurrentUserId() {
+        return "<%=userId%>";
+      }
+
+      function getWebContext() {
+        return "<%=m_context%>";
+      }
+
+      function getComponentId() {
+        return "${componentId}";
+      }
+
+      function getComponentLabel() {
+        return "<%=WebEncodeHelper.javaStringToJsString(componentLabel)%>";
+      }
+
+      function getLanguage() {
+        return "<%=language%>";
+      }
+
+      function getPubIdToHighlight() {
+        return "<%=pubIdToHighlight%>";
+      }
+
+      function getTranslation() {
+        return "<%=translation%>";
+      }
+
+      function getToValidateFolderId() {
+        return "<%=KmeliaHelper.SPECIALFOLDER_TOVALIDATE%>";
+      }
+
+      function getNonVisiblePubsFolderId() {
+        return "<%=KmeliaHelper.SPECIALFOLDER_NONVISIBLEPUBS%>";
+      }
+
+      function isSpecialFolder(id) {
+        return id === getToValidateFolderId() || id === getNonVisiblePubsFolderId();
+      }
+
+      function focusOnSearch()
+      {
+        $("#topicQuery").focus();
+      }
+    </script>
+  </view:sp-head-part>
+
+  <view:sp-body-part cssClass="yui-skin-sam treeView" id="${componentId}">
+    <div compile-directive style="display: none"></div>
+    <div id="${componentId}" class="<%=profile%>">
+      <%
+        Window window = gef.getWindow();
+        BrowseBar browseBar = window.getBrowseBar();
+        browseBar.setI18N("GoToCurrentTopic", translation);
+
+        //Display operations - following lines are mandatory to init menu correctly
+        OperationPane operationPane = window.getOperationPane();
+        operationPane.addOperation("", resources.getString("FavoritesAdd1")+" "+kmeliaScc.getString("FavoritesAdd2"), "javaScript:addCurrentNodeAsFavorite()");
+
+        out.println(window.printBefore());
+      %>
+      <view:frame>
+        <div id="subTopics"></div>
+
+        <kmelia:searchZone enabled="${displaySearch}"/>
+
+        <div id="topicDescription" class="rich-content"></div>
+        <view:areaOfOperationOfCreation/>
+        <div class="dragAndDropUpload" style="min-height: 75px">
+          <div id="pubList">
+            <br/>
+            <view:board>
+              <br/>
+              <center><%=resources.getString("kmelia.inProgressPublications") %>
+                <br/><br/><img src="<%=resources.getIcon("kmelia.progress") %>"/></center>
+              <br/>
+            </view:board>
+          </div>
+        </div>
+        <div id="footer" class="txtBaseline"></div>
+      </view:frame>
+      <%
+        out.println(window.printAfter());
+      %>
+
+      <form name="topicDetailForm" method="post">
+        <input type="hidden" name="Id" value="<%=id%>"/>
+        <input type="hidden" name="ChildId"/>
+        <input type="hidden" name="Status"/>
+        <input type="hidden" name="Recursive"/>
+      </form>
+
+      <form name="pubForm" action="ViewPublication" method="GET">
+        <input type="hidden" name="PubId"/>
+        <input type="hidden" id="CheckPath" name="CheckPath"/>
+      </form>
+
+      <form name="fupload" action="fileUpload.jsp" method="post" enctype="multipart/form-data" accept-charset="UTF-8">
+        <input type="hidden" name="Action" value="initial"/>
+      </form>
+
+      <script type="text/javascript">
+        var icons = new Object();
+        icons["permalink"] = "<%=resources.getIcon("kmelia.link")%>";
+        icons["operation.addTopic"] = "<%=resources.getIcon("kmelia.operation.addTopic")%>";
+        icons["operation.addPubli"] = "<%=resources.getIcon("kmelia.operation.addPubli")%>";
+        icons["operation.importFile"] = "<%=resources.getIcon("kmelia.operation.importFile")%>";
+        icons["operation.importFiles"] = "<%=resources.getIcon("kmelia.operation.importFiles")%>";
+        icons["operation.subscribe"] = "<%=resources.getIcon("kmelia.operation.subscribe")%>";
+        icons["operation.favorites"] = "<%=resources.getIcon("kmelia.operation.favorites")%>";
+
+        var params = new Object();
+        params["rightsOnTopic"] = <%=rightsOnTopics.booleanValue()%>;
+        params["i18n"] = <%=I18NHelper.isI18nContentActivated%>;
+        params["nbPublisDisplayed"] = <%=displayNBPublis%>;
+
+        var searchInProgress = <%=searchContext != null%>;
+        var searchFolderId = "<%=id%>";
+
+        function getComponentPermalink() {
+          return "<%=URLUtil.getSimpleURL(URLUtil.URL_COMPONENT, componentId)%>";
+        }
 
-  //Display operations - following lines are mandatory to init menu correctly
-  OperationPane operationPane = window.getOperationPane();
-  operationPane.addOperation("", resources.getString("FavoritesAdd1")+" "+kmeliaScc.getString("FavoritesAdd2"), "javaScript:addCurrentNodeAsFavorite()");
+        function copyCurrentNode()  {
+          top.IdleFrame.location.href = '../..<%=kmeliaScc.getComponentUrl()%>copy?Object=Node&Id='+getCurrentNodeId();
+        }
 
-    out.println(window.printBefore());
-%>
-<view:frame>
-          <div id="subTopics"></div>
+        function cutCurrentNode() {
+          top.IdleFrame.location.href = '../..<%=kmeliaScc.getComponentUrl()%>cut?Object=Node&Id='+getCurrentNodeId();
+        }
 
-          <kmelia:searchZone enabled="<%=displaySearch%>"/>
+        function changeCurrentTopicStatus() {
+          changeStatus(getCurrentNodeId(), getCurrentTopicStatus());
+        }
 
-          <div id="topicDescription" class="rich-content"></div>
-          <view:areaOfOperationOfCreation/>
-          <div class="dragAndDropUpload" style="min-height: 75px">
-            <div id="pubList">
-              <br/>
-              <view:board>
-                <br/>
-                <center><%=resources.getString("kmelia.inProgressPublications") %>
-                  <br/><br/><img src="<%=resources.getIcon("kmelia.progress") %>"/></center>
-                <br/>
-              </view:board>
-            </div>
-          </div>
-          <div id="footer" class="txtBaseline"></div>
-    </view:frame>
-  <%
-    out.println(window.printAfter());
-  %>
-
-<form name="topicDetailForm" method="post">
-  <input type="hidden" name="Id" value="<%=id%>"/>
-  <input type="hidden" name="ChildId"/>
-  <input type="hidden" name="Status"/>
-  <input type="hidden" name="Recursive"/>
-</form>
-
-<form name="pubForm" action="ViewPublication" method="GET">
-  <input type="hidden" name="PubId"/>
-  <input type="hidden" id="CheckPath" name="CheckPath"/>
-</form>
-
-<form name="fupload" action="fileUpload.jsp" method="post" enctype="multipart/form-data" accept-charset="UTF-8">
-  <input type="hidden" name="Action" value="initial"/>
-</form>
-
-<script type="text/javascript">
-var icons = new Object();
-icons["permalink"] = "<%=resources.getIcon("kmelia.link")%>";
-icons["operation.addTopic"] = "<%=resources.getIcon("kmelia.operation.addTopic")%>";
-icons["operation.addPubli"] = "<%=resources.getIcon("kmelia.operation.addPubli")%>";
-icons["operation.importFile"] = "<%=resources.getIcon("kmelia.operation.importFile")%>";
-icons["operation.importFiles"] = "<%=resources.getIcon("kmelia.operation.importFiles")%>";
-icons["operation.subscribe"] = "<%=resources.getIcon("kmelia.operation.subscribe")%>";
-icons["operation.favorites"] = "<%=resources.getIcon("kmelia.operation.favorites")%>";
-
-var params = new Object();
-params["rightsOnTopic"] = <%=rightsOnTopics.booleanValue()%>;
-params["i18n"] = <%=I18NHelper.isI18nContentActivated%>;
-params["nbPublisDisplayed"] = <%=displayNBPublis%>;
-
-var searchInProgress = <%=searchContext != null%>;
-var searchFolderId = "<%=id%>";
-
-function getComponentPermalink() {
-  return "<%=URLUtil.getSimpleURL(URLUtil.URL_COMPONENT, componentId)%>";
-}
-
-function copyCurrentNode()  {
-  top.IdleFrame.location.href = '../..<%=kmeliaScc.getComponentUrl()%>copy?Object=Node&Id='+getCurrentNodeId();
-}
-
-function cutCurrentNode() {
-  top.IdleFrame.location.href = '../..<%=kmeliaScc.getComponentUrl()%>cut?Object=Node&Id='+getCurrentNodeId();
-}
-
-function changeCurrentTopicStatus() {
-  changeStatus(getCurrentNodeId(), getCurrentTopicStatus());
-}
-
-function updateUIStatus(nodeId, newStatus) {
-  setCurrentTopicStatus(newStatus);
-  displayOperations(nodeId);
-}
-
-function displayTopicContent(id) {
-  if (id !== searchFolderId) {
-    // search session is over
-    searchInProgress = false;
-  }
+        function updateUIStatus(nodeId, newStatus) {
+          setCurrentTopicStatus(newStatus);
+          displayOperations(nodeId);
+        }
 
-  if (!searchInProgress) {
-    clearSearchQuery();
-  }
+        function displayTopicContent(id) {
+          if (id !== searchFolderId) {
+            // search session is over
+            searchInProgress = false;
+          }
+
+          if (!searchInProgress) {
+            clearSearchQuery();
+          }
+
+          setCurrentNodeId(id);
+
+          if (isSpecialFolder(id) || id === "1") {
+            muteDragAndDrop(); //mute dropzone
+            $("#footer").css({'visibility':'hidden'}); //hide footer
+            $("#searchZone").css({'display':'none'}); //hide search
+            $("#subTopics").empty();
+            if (id === getToValidateFolderId()) {
+              hideOperations();
+
+              //update breadcrumb
+              removeBreadCrumbElements();
+              addBreadCrumbElement("#", "<%=resources.getString("ToValidate")%>");
+            } else if (id === getNonVisiblePubsFolderId())  {
+              hideOperations();
+
+              //update breadcrumb
+              removeBreadCrumbElements();
+              addBreadCrumbElement("#", "<%=resources.getString("kmelia.folder.nonvisiblepubs")%>");
+            } else {
+              displayPath(id);
+              displayOperations(id);
+            }
+            displayPublications(id);
 
-  setCurrentNodeId(id);
-
-  if (isSpecialFolder(id) || id === "1") {
-    muteDragAndDrop(); //mute dropzone
-    $("#footer").css({'visibility':'hidden'}); //hide footer
-    $("#searchZone").css({'display':'none'}); //hide search
-    $("#subTopics").empty();
-
-    if (id === getToValidateFolderId()) {
-      hideOperations();
-
-      //update breadcrumb
-      removeBreadCrumbElements();
-      addBreadCrumbElement("#", "<%=resources.getString("ToValidate")%>");
-    } else if (id === getNonVisiblePubsFolderId())  {
-      hideOperations();
-
-      //update breadcrumb
-      removeBreadCrumbElements();
-      addBreadCrumbElement("#", "<%=resources.getString("kmelia.folder.nonvisiblepubs")%>");
-    } else {
-      displayPath(id);
-      displayOperations(id);
-    }
-    displayPublications(id);
-
-  } else {
-    if (searchInProgress) {
-      doPagination(<%=currentPageIndex%>);
-    } else {
-      displayPublications(id);
-    }
-    displayPath(id);
-    displayOperations(id);
-    $("#searchZone").css({'display':'block'});
-    displaySubTopics(id);
-  }
+          } else {
+            if (searchInProgress) {
+              doPagination(<%=currentPageIndex%>);
+            } else {
+              displayPublications(id);
+            }
+            displayPath(id);
+            displayOperations(id);
+            $("#searchZone").css({'display':'block'});
+            displaySubTopics(id);
+          }
+
+          //display topic information
+          displayTopicInformation(id);
+
+          //display topic rich description
+          displayTopicDescription(id);
+
+          if (isSearchTopicEnabled) {
+            setTimeout(focusOnSearch,500);
+          }
+
+        }
 
-  //display topic information
-  displayTopicInformation(id);
-
-  //display topic rich description
-  displayTopicDescription(id);
-}
-
-function displaySubTopics(id) {
-  var sUrl = "<%=m_context%>/services/folders/<%=componentId%>/"+id+"/children?lang="+getTranslation();
-  $.ajax(sUrl, {
-     type: 'GET',
-     dataType : 'json',
-     async : false,
-     cache : false,
-     success : function(data){
-        $("#subTopics").empty();
-        $("#subTopics").append("<ul>");
-        var basket = "";
-        var tovalidate = "";
-        var nonVisiblePubs = "";
-        $.each(data, function(i, folder) {
-            var folderId = folder.attr["id"];
-            if (folderId === "1") {
-              basket = getSubFolder(folder);
-            } else if (folderId === getToValidateFolderId()) {
-              tovalidate = getSubFolder(folder);
-            } else if (folderId === getNonVisiblePubsFolderId()) {
-              nonVisiblePubs = getSubFolder(folder);
-            } else if (folderId !== "2") {
-              $("#subTopics ul").append(getSubFolder(folder));
+
+        function displaySubTopics(id) {
+          var sUrl = "<%=m_context%>/services/folders/<%=componentId%>/"+id+"/children?lang="+getTranslation();
+          $.ajax(sUrl, {
+            type: 'GET',
+            dataType : 'json',
+            async : false,
+            cache : false,
+            success : function(data){
+              $("#subTopics").empty();
+              $("#subTopics").append("<ul>");
+              var basket = "";
+              var tovalidate = "";
+              var nonVisiblePubs = "";
+              $.each(data, function(i, folder) {
+                var folderId = folder.attr["id"];
+                if (folderId === "1") {
+                  basket = getSubFolder(folder);
+                } else if (folderId === getToValidateFolderId()) {
+                  tovalidate = getSubFolder(folder);
+                } else if (folderId === getNonVisiblePubsFolderId()) {
+                  nonVisiblePubs = getSubFolder(folder);
+                } else if (folderId !== "2") {
+                  $("#subTopics ul").append(getSubFolder(folder));
+                }
+              });
+              if (id === "0") {
+                $("#subTopics ul").append(tovalidate);
+                $("#subTopics ul").append(nonVisiblePubs);
+                $("#subTopics ul").append(basket);
+              }
+              $("#subTopics").append("</ul>");
+              if ($("#subTopics ul li").length > 0) {
+                $("#subTopics").append("<br clear=\"all\">");
+              } else {
+                $("#subTopics").empty();
+              }
+            },
+            error : function(data) {
+              //alert("error");
             }
-        });
-        if (id === "0") {
-          $("#subTopics ul").append(tovalidate);
-          $("#subTopics ul").append(nonVisiblePubs);
-          $("#subTopics ul").append(basket);
+          });
         }
-        $("#subTopics").append("</ul>");
-        if ($("#subTopics ul li").length > 0) {
-          $("#subTopics").append("<br clear=\"all\">");
-        } else {
-          $("#subTopics").empty();
+
+        function getSubFolder(folder) {
+          var id = folder.attr["id"];
+          var nbItems = folder.attr["nbItems"];
+          var name = folder.text;
+          var desc = folder.attr["description"];
+          var folderType = folder["type"];
+
+          var str = '<li id="topic_'+id+'">';
+          str += '<a href="#" onclick="topicGoTo(\''+id+'\')" ';
+          if (id === getToValidateFolderId()) {
+            str += 'class="toValidate"';
+          } else if (id === getNonVisiblePubsFolderId()) {
+            str += 'class="nonVisiblePubs"';
+          } else if (id === "1") {
+            str += 'class="trash"';
+          } else if (folderType === '<%=NodeType.FOLDER_WITH_RIGHTS%>') {
+            str += 'class="folder-with-rights"';
+          }
+          str += '>';
+          str += '<strong>'+name+' ';
+          if (nbItems && typeof(nbItems) !== "undefined") {
+            str += '<span>'+nbItems+'</span>';
+          }
+          str += '</strong>';
+          if (typeof(desc) !== "undefined" && desc.length > 0) {
+            str += '<span title="'+desc+'">'+desc+'</span>';
+          }
+          str += '</a>';
+          str += '</li>';
+          return str;
         }
-      },
-    error : function(data) {
-       //alert("error");
-    }
-  });
-}
-
-function getSubFolder(folder) {
-  var id = folder.attr["id"];
-  var nbItems = folder.attr["nbItems"];
-  var name = folder.text;
-  var desc = folder.attr["description"];
-  var folderType = folder["type"];
-
-  var str = '<li id="topic_'+id+'">';
-  str += '<a href="#" onclick="topicGoTo(\''+id+'\')" ';
-  if (id === getToValidateFolderId()) {
-    str += 'class="toValidate"';
-  } else if (id === getNonVisiblePubsFolderId()) {
-    str += 'class="nonVisiblePubs"';
-  } else if (id === "1") {
-    str += 'class="trash"';
-  } else if (folderType === '<%=NodeType.FOLDER_WITH_RIGHTS%>') {
-    str += 'class="folder-with-rights"';
-  }
-  str += '>';
-  str += '<strong>'+name+' ';
-  if (nbItems && typeof(nbItems) !== "undefined") {
-    str += '<span>'+nbItems+'</span>';
-  }
-  str += '</strong>';
-  if (typeof(desc) !== "undefined" && desc.length > 0) {
-    str += '<span title="'+desc+'">'+desc+'</span>';
-  }
-  str += '</a>';
-  str += '</li>';
-  return str;
-}
-
-function getString(key) {
-  return sp.i18n.get(key);
-}
-</script>
-</div>
-<div id="visibleInvisible-message" style="display: none;">
-  <p>
-  </p>
-</div>
-<div id="addOrUpdateNode" style="display: none;">
-  <form name="topicForm" action="AddTopic" method="post">
-    <input type="hidden" id="<%=I18NHelper.HTMLHiddenRemovedTranslationMode %>" name="<%=I18NHelper.HTMLHiddenRemovedTranslationMode %>" value="false"/>
-       <table cellpadding="5" width="100%">
-         <tr><td class="txtlibform"><fmt:message key="TopicPath"/> :</td>
-           <td valign="top" id="path"></td>
-         </tr>
-         <%=I18NHelper.getFormLine(resources, null, kmeliaScc.getLanguage())%>
-         <tr>
-           <td class="txtlibform"><fmt:message key="TopicTitle"/> :</td>
-           <td><input type="text" name="Name" id="folderName" size="60" maxlength="60"/>
-           <input type="hidden" name="ParentId" id="parentId"/>
-           <input type="hidden" name="ChildId" id="topicId"/>&nbsp;<img border="0" src="<c:out value="${mandatoryFieldUrl}" />" width="5" height="5"/></td>
-         </tr>
-
-         <tr>
-           <td class="txtlibform"><fmt:message key="TopicDescription" /> :</td>
-           <td><input type="text" name="Description" id="folderDescription" size="60" maxlength="200"/></td>
-         </tr>
-
-         <% if (kmeliaScc.isNotificationAllowed()) { %>
-           <tr>
-             <td class="txtlibform" valign="top"><fmt:message key="TopicAlert" /> :</td>
-             <td valign="top">
-               <select name="AlertType">
-                 <option value="NoAlert" selected="selected"><fmt:message key="NoAlert" /></option>
-                 <option value="Publisher"><fmt:message key="OnlyPubsAlert" /></option>
-                 <option value="All"><fmt:message key="AllUsersAlert" /></option>
-               </select>
-             </td>
-           </tr>
-         <% } %>
-         <tr>
-           <td colspan="2"><img border="0" alt="mandatory" src="<c:out value="${mandatoryFieldUrl}" />" width="5" height="5"/> : <fmt:message key="GML.requiredField"/></td>
-         </tr>
-       </table>
-     </form>
-</div>
-
-<%@ include file="../../sharing/jsp/createTicketPopin.jsp" %>
-<view:progressMessage/>
-<kmelia:paste highestUserRole="${highestUserRole}" componentInstanceId="<%=componentId%>" />
-<kmelia:dragAndDrop highestUserRole="${highestUserRole}" componentInstanceId="<%=componentId%>" contentLanguage="<%=translation%>" />
-<script type="text/javascript">
-/* declare the module myapp and its dependencies (here in the silverpeas module) */
-var myapp = angular.module('silverpeas.kmelia', ['silverpeas.services', 'silverpeas.directives']);
-</script>
-</body>
-</html>
+
+        function getString(key) {
+          return sp.i18n.get(key);
+        }
+      </script>
+    </div>
+    <div id="visibleInvisible-message" style="display: none;">
+      <p>
+      </p>
+    </div>
+    <div id="addOrUpdateNode" style="display: none;">
+      <form name="topicForm" action="AddTopic" method="post">
+        <input type="hidden" id="<%=I18NHelper.HTMLHiddenRemovedTranslationMode %>" name="<%=I18NHelper.HTMLHiddenRemovedTranslationMode %>" value="false"/>
+        <table cellpadding="5" width="100%">
+          <tr><td class="txtlibform"><fmt:message key="TopicPath"/> :</td>
+            <td valign="top" id="path"></td>
+          </tr>
+          <%=I18NHelper.getFormLine(resources, null, kmeliaScc.getLanguage())%>
+          <tr>
+            <td class="txtlibform"><fmt:message key="TopicTitle"/> :</td>
+            <td><input type="text" name="Name" id="folderName" size="60" maxlength="60"/>
+              <input type="hidden" name="ParentId" id="parentId"/>
+              <input type="hidden" name="ChildId" id="topicId"/>&nbsp;<img border="0" src="<c:out value="${mandatoryFieldUrl}" />" width="5" height="5"/></td>
+          </tr>
+
+          <tr>
+            <td class="txtlibform"><fmt:message key="TopicDescription" /> :</td>
+            <td><input type="text" name="Description" id="folderDescription" size="60" maxlength="200"/></td>
+          </tr>
+
+          <% if (kmeliaScc.isNotificationAllowed()) { %>
+          <tr>
+            <td class="txtlibform" valign="top"><fmt:message key="TopicAlert" /> :</td>
+            <td valign="top">
+              <select name="AlertType">
+                <option value="NoAlert" selected="selected"><fmt:message key="NoAlert" /></option>
+                <option value="Publisher"><fmt:message key="OnlyPubsAlert" /></option>
+                <option value="All"><fmt:message key="AllUsersAlert" /></option>
+              </select>
+            </td>
+          </tr>
+          <% } %>
+          <tr>
+            <td colspan="2"><img border="0" alt="mandatory" src="<c:out value="${mandatoryFieldUrl}" />" width="5" height="5"/> : <fmt:message key="GML.requiredField"/></td>
+          </tr>
+        </table>
+      </form>
+    </div>
+
+    <%@ include file="../../sharing/jsp/createTicketPopin.jsp" %>
+    <view:progressMessage/>
+    <kmelia:paste highestUserRole="${highestUserRole}" componentInstanceId="<%=componentId%>" />
+    <kmelia:dragAndDrop highestUserRole="${highestUserRole}" componentInstanceId="<%=componentId%>" contentLanguage="<%=translation%>" />
+    <script type="text/javascript">
+      /* declare the module myapp and its dependencies (here in the silverpeas module) */
+      var myapp = angular.module('silverpeas.kmelia', ['silverpeas.services', 'silverpeas.directives']);
+    </script>
+  </view:sp-body-part>
+</view:sp-page>
\ No newline at end of file
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/orderPublications.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/orderPublications.jsp
index f28e3004ad..d089b47b81 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/orderPublications.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/orderPublications.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/orderTopics.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/orderTopics.jsp
index bcddb5ee01..53639fcf41 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/orderTopics.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/orderTopics.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/portlet.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/portlet.jsp
index 23d660a3a7..ac218b6187 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/portlet.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/portlet.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publication.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publication.jsp
index 71a9c853a4..acc04ea952 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publication.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publication.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.components.kmelia.KmeliaPublicationHelper"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationLinksManager.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationLinksManager.jsp
index ff785df20b..d45eaf59ff 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationLinksManager.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationLinksManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationManager.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationManager.jsp
index 59ffcd0059..d14424a94e 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationManager.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -82,16 +82,10 @@
     String profile = (String) request.getAttribute("Profile");
     String action = (String) request.getAttribute("Action");
     String id = (String) request.getAttribute("PubId");
-    String currentLang = (String) request.getAttribute("Language");
     List<NodeDetail> path = (List<NodeDetail>) request.getAttribute("Path");
     boolean draftOutTaxonomyOK = (Boolean) request.getAttribute("TaxonomyOK");
   	boolean draftOutValidatorsOK = (Boolean) request.getAttribute("ValidatorsOK");
-
-    String resultThumbnail =  request.getParameter("resultThumbnail");
-    boolean errorThumbnail = false;
-    if(resultThumbnail != null && !"ok".equals(resultThumbnail)){
-      errorThumbnail = true;
-    }
+    boolean isPublicationClone = false;
 
     PublicationDetail volatilePublication = (PublicationDetail) request.getAttribute("VolatilePublication");
     Form extraForm = (Form) request.getAttribute("ExtraForm");
@@ -135,6 +129,7 @@
       id = kmeliaPublication.getId();
       
       pubDetail = kmeliaPublication.getDetail();
+      isPublicationClone = !"-1".equals(pubDetail.getCloneId()) && !StringUtil.isDefined(pubDetail.getCloneStatus());
       thumbnail = pubDetail.getThumbnail();
       ownerDetail = kmeliaPublication.getCreator();
 
@@ -244,12 +239,8 @@
 
 	String backUrl = URLUtil.getFullApplicationURL(request) + URLUtil.getURL("kmelia", null, componentId) + "ToUpdatePublicationHeader";
 %>
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-  <head>
-    <title></title>
-    <view:looknfeel withFieldsetStyle="true" withCheckFormScript="true"/>
+<view:sp-page>
+  <view:sp-head-part withCheckFormScript="true" withFieldsetStyle="true">
     <view:includePlugin name="datepicker"/>
     <view:includePlugin name="popup"/>
     <view:includePlugin name="wysiwyg"/>
@@ -337,7 +328,7 @@
       }
 
       function reallySendData() {
-        <% if(!kmaxMode && "New".equals(action)) { %>
+        <% if(!kmaxMode) { %>
           <view:pdcPositions setIn="document.pubForm.KmeliaPubPositions.value"/>
         <% } %>
         document.pubForm.action = "<%=nextAction%>";
@@ -398,7 +389,7 @@
           errorNb++;
         });
 
-        <% if(!kmaxMode && "New".equals(action)) { %>
+        <% if(!kmaxMode && !isPublicationClone) { %>
         <view:pdcValidateClassification errorCounter="errorNb" errorMessager="errorMsg"/>
         <% } %>
         
@@ -485,8 +476,8 @@
 	          });
         });
     </script>
-  </head>
-  <body id="<%=componentId%>" class="publicationManager" onunload="closeWindows()">
+  </view:sp-head-part>
+  <view:sp-body-part id="<%=componentId%>" cssClass="publicationManager">
 <%
         Window window = gef.getWindow();
         OperationPane operationPane = window.getOperationPane();
@@ -593,7 +584,7 @@
 				<div class="field" id="pubNameArea">
 					<label for="pubName" class="txtlibform"><%=resources.getString("PubTitre")%></label>
 					<div class="champs">
-						<input type="text" name="KmeliaPubName" id="pubName" value="<%=name%>" size="68" maxlength="400" />&nbsp;<img src="<%=mandatorySrc%>" width="5" height="5" border="0"/>
+						<input type="text" name="KmeliaPubName" id="pubName" value="<%=name%>" size="68" maxlength="400" />&nbsp;<img src="<%=mandatorySrc%>" alt="<%=resources.getString("GML.requiredField")%>" width="5" height="5"/>
 					</div>
 				</div>
 
@@ -603,7 +594,7 @@
 					<div class="champs">
 						<textarea rows="4" cols="65" name="KmeliaPubDescription" id="pubDesc"><%=description%></textarea>
 						<% if (isFieldDescriptionMandatory) {%>
-          					<img src="<%=mandatorySrc%>" width="5" height="5" border="0"/>
+          					<img src="<%=mandatorySrc%>" alt="<%=resources.getString("GML.requiredField")%>" width="5" height="5"/>
           				<% }%>
 					</div>
 				</div>
@@ -676,7 +667,7 @@
           				<% } else {%>
           					<textarea name="Valideur" id="Valideur" rows="4" cols="40" readonly="readonly"><%=targetValidatorName%></textarea>
           				<% }%>
-          				<input type="hidden" name="KmeliaPubValideurId" id="ValideurId" value="<%=targetValidatorId%>"/><%=link%>&nbsp;<img src="<%=mandatorySrc%>" width="5" height="5" border="0"/>
+          				<input type="hidden" name="KmeliaPubValideurId" id="ValideurId" value="<%=targetValidatorId%>"/><%=link%>&nbsp;<img src="<%=mandatorySrc%>" alt="<%=resources.getString("GML.requiredField")%>" width="5" height="5"/>
 					</div>
 				</div>
 				<% } %>
@@ -764,17 +755,17 @@
         if ("New".equals(action)) { %>
           	<view:pdcNewContentClassification componentId="<%= componentId %>" nodeId="<%= kmeliaScc.getCurrentFolderId() %>"/>
     <%  } else { %>
-    	<% if (!"-1".equals(pubDetail.getCloneId()) && !StringUtil.isDefined(pubDetail.getCloneStatus())) { %>
+    	<% if (isPublicationClone) { %>
     		<!-- positions are only editable on original publication -->
     		<view:pdcClassification componentId="<%= componentId %>" contentId="<%= pubDetail.getCloneId() %>" editable="false" />
     	<% } else { %>
-    		<view:pdcClassification componentId="<%= componentId %>" contentId="<%= id %>" editable="true" />
+    		<view:pdcClassification componentId="<%= componentId %>" contentId="<%= id %>" editable="true" externalManagement="true" />
     	<% } %>
     <%  }
       } %>
 
 	<div class="legend">
-		<img src="<%=mandatorySrc%>" width="5" height="5"/> : <%=resources.getString("GML.requiredField")%>
+		<img alt="<%=resources.getString("GML.requiredField")%>" src="<%=mandatorySrc%>" width="5" height="5"/> : <%=resources.getString("GML.requiredField")%>
 	</div>
 
   </form>
@@ -827,5 +818,5 @@
       	</ul>
       </div>
   <view:progressMessage/>
-</body>
-</html>
\ No newline at end of file
+</view:sp-body-part>
+</view:sp-page>
\ No newline at end of file
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationPaths.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationPaths.jsp
index b0d7117eae..058298e936 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationPaths.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationPaths.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,275 +20,280 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
-<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
-<%@ taglib uri="http://www.silverpeas.com/tld/viewGenerator" prefix="view"%>
+<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
+<%@ taglib uri="http://www.silverpeas.com/tld/viewGenerator" prefix="view" %>
 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
 <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
+<%@ taglib prefix="p" uri="http://www.silverpeas.com/tld/viewGenerator" %>
+<%@ taglib prefix="sp" uri="http://www.silverpeas.com/tld/viewGenerator" %>
 <%@ page import="org.silverpeas.components.kmelia.model.KmeliaPublication" %>
 <%
-response.setHeader("Cache-Control","no-store"); //HTTP 1.1
-response.setHeader("Pragma","no-cache"); //HTTP 1.0
-response.setDateHeader ("Expires",-1); //prevents caching at the proxy server
+  response.setHeader("Cache-Control", "no-store"); //HTTP 1.1
+  response.setHeader("Pragma", "no-cache"); //HTTP 1.0
+  response.setDateHeader("Expires", -1); //prevents caching at the proxy server
 %>
 
 <%@ include file="checkKmelia.jsp" %>
 
 <%
-KmeliaPublication publication 		= (KmeliaPublication) request.getAttribute("Publication");
-String 				linkedPathString 	= (String) request.getAttribute("LinkedPathString");
-String				currentLang 		= (String) request.getAttribute("Language");
+  KmeliaPublication publication = (KmeliaPublication) request.getAttribute("Publication");
+  String linkedPathString = (String) request.getAttribute("LinkedPathString");
+  String currentLang = (String) request.getAttribute("Language");
 
-String pubName 	= publication.getDetail().getName(currentLang);
-String id 		= publication.getDetail().getPK().getId();
+  String pubName = publication.getDetail().getName(currentLang);
+  String id = publication.getDetail().getPK().getId();
 
-boolean toolbox = componentId.startsWith("toolbox");
+  boolean toolbox = componentId.startsWith("toolbox");
 %>
 
 <c:set var="toolbox" value="<%=toolbox%>"/>
-<fmt:setLocale value="${sessionScope[sessionController].language}" />
-<view:setBundle bundle="${requestScope.resources.multilangBundle}" />
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xml:lang="<%=currentLang%>">
-<head>
-<title></title>
-<view:looknfeel/>
-<script type="text/javascript">
-	$(document).ready(function(){
-    displayLocations();
-    <c:choose>
-      <c:when test="${toolbox}">
+<c:set var="componentId" value="<%=componentId%>"/>
+<c:set var="spaceId" value="<%=spaceId%>"/>
+<c:set var="linkedPathString" value="<%=linkedPathString%>"/>
+<c:set var="pubName" value="<%=pubName%>"/>
+
+<view:sp-page>
+  <fmt:setLocale value="${sessionScope[sessionController].language}"/>
+  <view:setBundle bundle="${requestScope.resources.multilangBundle}"/>
+  <view:sp-head-part>
+    <script type="text/javascript">
+      $(document).ready(function() {
+        displayLocations();
+        <c:choose>
+        <c:when test="${toolbox}">
         viewComponent("<%=componentId%>");
-      </c:when>
-      <c:otherwise>
+        </c:when>
+        <c:otherwise>
         viewLocalComponent();
         $("#browsingArea").show();
         displaySpaces();
-      </c:otherwise>
-    </c:choose>
-	});
+        </c:otherwise>
+        </c:choose>
+      });
 
-  function manageLocation(nodeId, componentId, checkbox) {
-    let locationId = nodeId+"-"+componentId;
-    let uri = webContext+"/services/private/publications/<%=componentId%>/<%=id%>/locations/"+locationId;
-    if (checkbox.checked) {
-      addAlias(uri, locationId)
-    } else {
-      deleteAlias(uri, locationId);
-    }
-  }
+      function manageLocation(nodeId, componentId, checkbox) {
+        let locationId = nodeId + "-" + componentId;
+        let uri = webContext +
+            "/services/private/publications/<%=componentId%>/<%=id%>/locations/" + locationId;
+        if (checkbox.checked) {
+          addAlias(uri)
+        } else {
+          deleteAlias(uri, locationId);
+        }
+      }
 
-	function displaySpaces() {
-    viewSpace('0');
-  }
+      function displaySpaces() {
+        viewSpace('0');
+      }
 
-  const currentPath = new Map();
-	currentPath.set('0', '&nbsp;');
+      const currentPath = new Map();
+      currentPath.set('0', '&nbsp;');
+      const KMELIA = 'kmelia';
 
-	function processPath(spaceId) {
-	  if (spaceId) {
-      // check if spaceId is not already in path
-      if (currentPath.has(spaceId)) {
-        let deleteNext = false;
-        for (const key of currentPath.keys()) {
-          if (deleteNext) {
-            currentPath.delete(key);
-          } else {
-            if (key === spaceId) {
-              deleteNext = true;
+      function processPath(spaceId) {
+        if (spaceId) {
+          // check if component is already in path
+          if (currentPath.has(KMELIA)) {
+            currentPath.delete(KMELIA);
+          }
+          // check if spaceId is already in path
+          if (currentPath.has(spaceId)) {
+            let deleteNext = false;
+            for (const key of currentPath.keys()) {
+              if (deleteNext) {
+                currentPath.delete(key);
+              } else {
+                if (key === spaceId) {
+                  deleteNext = true;
+                }
+              }
             }
+          } else {
+            let spaceLabel = $("#space-" + spaceId).text();
+            currentPath.set(spaceId, spaceLabel);
           }
+          displayCurrentPath();
         }
-      } else {
-        let spaceLabel = $("#space-" + spaceId).text();
-        currentPath.set(spaceId, spaceLabel);
       }
 
-      let path = "";
-      for (const key of currentPath.keys()) {
-        if (key !== '0') {
-          path += " > ";
+      function viewSpace(spaceId) {
+        let uri = webContext + "/services/spaces";
+        if (spaceId !== '0') {
+          uri += "/" + spaceId + "/spaces";
         }
-        let a = "<a href=\"#\" onclick=\"viewSpace('" + key + "'); return false;\">" + currentPath.get(key) + "</a>";
-        path += a;
-      }
-      $("#currentPath").html(path);
-    }
-  }
-
-  function viewSpace(spaceId) {
-    let uri = webContext+"/services/spaces";
-    if (spaceId !== '0') {
-      uri += "/"+spaceId+"/spaces";
-    }
 
-    processPath(spaceId);
-    emptyComponentTreeview();
-    $("#components ul").empty();
-
-    $("#spaces ul").empty();
-    let ajaxRequest = sp.ajaxRequest(uri);
-    ajaxRequest.send().then(function(response) {
-      response.responseAsJson().forEach(function(space) {
-        let li = "<li id=\"space-"+space.id+"\"><a href=\"#\" onclick=\"viewSpace('"+space.id+"'); return false;\">"+space.label+"</a></li>";
-        $("#spaces ul").append(li);
-      });
-    });
-    if (spaceId !== '0') {
-      displayComponents(spaceId);
-    }
-  }
-
-  function displayComponents(spaceId) {
-    let uri = webContext+"/services/spaces/"+spaceId+"/components";
-    $("#components ul").empty();
-    let ajaxRequest = sp.ajaxRequest(uri);
-    ajaxRequest.send().then(function(response) {
-      response.responseAsJson().forEach(function(component) {
-        if (component.name === "kmelia") {
-          let componentId = component.name+component.id;
-          let li = "<li id=\""+componentId+"\"><a href=\"#\" onclick=\"viewComponent('"+componentId+"', true); return false;\">"+component.label+"</a></li>";
-          $("#components ul").append(li);
+        processPath(spaceId);
+        emptyComponentTreeview();
+        $("#components ul").empty();
+
+        $("#spaces ul").empty();
+        let ajaxRequest = sp.ajaxRequest(uri);
+        ajaxRequest.send().then(function(response) {
+          response.responseAsJson().forEach(function(space) {
+            let li = "<li id=\"space-" + space.id + "\"><a href=\"#\" onclick=\"viewSpace('" +
+                space.id + "'); return false;\">" + space.label + "</a></li>";
+            $("#spaces ul").append(li);
+          });
+        });
+        if (spaceId !== '0') {
+          displayComponents(spaceId);
         }
-      });
-    });
-  }
-
-  function viewComponent(componentId, addToPath) {
-	  if (addToPath) {
-	    let componentLabel = $("#"+componentId).text();
-      if (!$('#currentPath').text().includes(componentLabel)) {
-        $("#currentPath").append(" > ").append(componentLabel);
       }
-    }
-	  emptyComponentTreeview();
-    $.post("<%=routerUrl%>ShowAliasTree?ComponentId="+componentId, function(data){
-      $("#treeviewFolders").html(data);
-    });
-  }
-
-  function viewLocalComponent() {
-    $.post("<%=routerUrl%>ShowAliasTree?ComponentId=<%=componentId%>", function(data){
-      $("#localTreeview").html(data);
-    });
-  }
 
-  function emptyComponentTreeview() {
-    $("#treeviewFolders").empty();
-  }
-
-	function deleteAlias(aliasURI, locationId) {
-    var ajaxRequest = sp.ajaxRequest(aliasURI).byDeleteMethod();
-    ajaxRequest.send().then(function() {
-      $("#currentLocations #"+locationId).remove();
-      $("#localTreeview #"+locationId).prop("checked", false);
-      $("#treeviewFolders #"+locationId).prop("checked", false);
-    });
-  }
-
-  function addAlias(aliasURI, locationId) {
-    var ajaxRequest = sp.ajaxRequest(aliasURI).byPutMethod();
-    ajaxRequest.send().then(function() {
-      displayLocations();
-    });
-  }
+      function displayComponents(spaceId) {
+        let uri = webContext + "/services/spaces/" + spaceId + "/components";
+        $("#components ul").empty();
+        let ajaxRequest = sp.ajaxRequest(uri);
+        ajaxRequest.send().then(function(response) {
+          response.responseAsJson().forEach(function(component) {
+            if (component.name === KMELIA) {
+              let componentId = component.name + component.id;
+              let li = "<li id=\"" + componentId + "\"><a href=\"#\" onclick=\"viewComponent('" +
+                  componentId + "');\" return false;\">" + component.label + "</a></li>";
+              $("#components ul").append(li);
+            }
+          });
+        });
+      }
 
-  function displayLocations() {
-    var ajaxRequest = sp.ajaxRequest(webContext+"/services/private/publications/<%=componentId%>/<%=id%>/locations?lang="+getUserLanguage());
-    ajaxRequest.send().then(function(response) {
-      var lis = "";
-      response.responseAsJson().forEach(function(location) {
-        var locationId = location.id+"-"+location.componentId;
-        var li = "<li id=\""+locationId+"\"><span class=\"location-path\">"+location.path+"</span>";
-        if (location.alias) {
-          li += "<span class=\"location-user\">"+location.user.fullName+"</span>";
-          li += "<span class=\"location-date\">"+sp.moment.displayAsDateTime(location.date)+"</span>";
-          li += "<a class=\"delete-button\" href=\"#\" onclick=\"deleteAlias('"+location.uri+"', '"+locationId+"')\">Supprimer</a>";
+      function viewComponent(componentId) {
+        let componentLabel = $("#" + componentId).text();
+        if (currentPath.has(KMELIA)) {
+          currentPath.delete(KMELIA);
         }
-        li += "</li>";
-        lis += li;
-      });
-      $("#currentLocations ul").html(lis);
-    });
-  }
-
-  function topicGoTo(id) {
-    location.href="GoToTopic?Id="+id;
-  }
-</script>
-</head>
-<body class="kmelia path locations">
-  <%
-    Window window = gef.getWindow();
-    Frame frame = gef.getFrame();
-
-    BrowseBar browseBar = window.getBrowseBar();
-
-    browseBar.setDomainName(spaceLabel);
-      browseBar.setComponentName(componentLabel, "javascript:onClick=topicGoTo('0')");
-      browseBar.setPath(linkedPathString);
-      browseBar.setExtraInformation(pubName);
-
-    out.println(window.printBefore());
-
-    KmeliaDisplayHelper.displayAllOperations(id, kmeliaScc, gef, "ViewPath", resources, out);
+        currentPath.set(KMELIA, componentLabel);
+        displayCurrentPath();
+        emptyComponentTreeview();
+        $.post("<%=routerUrl%>ShowAliasTree?ComponentId=" + componentId, function(data) {
+          $("#treeviewFolders").html(data);
+        });
+      }
 
-  out.println(frame.printBefore());
+      function displayCurrentPath() {
+        let path = "";
+        for (const key of currentPath.keys()) {
+          if (key !== '0') {
+            path += " > ";
+          }
+          let a = "";
+          if (key === KMELIA) {
+            a = currentPath.get(KMELIA);
+          } else {
+            a = "<a href=\"#\" onclick=\"viewSpace('" + key + "'); return false;\">" +
+                currentPath.get(key) + "</a>";
+          }
+          path += a;
+        }
+        $("#currentPath").html(path);
+      }
 
-        Board board	= gef.getBoard();
-        
-        out.println(board.printBefore());
+      function viewLocalComponent() {
+        $.post("<%=routerUrl%>ShowAliasTree?ComponentId=<%=componentId%>", function(data) {
+          $("#localTreeview").html(data);
+        });
+      }
 
-    //regarder si la publication est dans la corbeille
-    if (publication.getLocation().isTrash()) {
-      //la publi est dans la corbeille
-      out.println("<div class=\"inlineMessage\">"+kmeliaScc.getString("kmelia.PubInBasket")+"</div>");
-    }
+      function emptyComponentTreeview() {
+        $("#treeviewFolders").empty();
+      }
 
-        %>
-  <div id="currentLocations">
-    <div class="header">
-      <h3><fmt:message key="kmelia.paths.local"/></h3>
-    </div>
-    <ul></ul>
-  </div>
+      function deleteAlias(aliasURI, locationId) {
+        var ajaxRequest = sp.ajaxRequest(aliasURI).byDeleteMethod();
+        ajaxRequest.send().then(function() {
+          $("#currentLocations #" + locationId).remove();
+          $("#localTreeview #" + locationId).prop("checked", false);
+          $("#treeviewFolders #" + locationId).prop("checked", false);
+        });
+      }
 
-  <div id="localLocations">
-    <div class="header">
-      <h3><fmt:message key="kmelia.paths.local.add"/></h3>
-    </div>
-    <div id="localTreeview" class="accordion"></div>
-  </div>
+      function addAlias(aliasURI) {
+        let ajaxRequest = sp.ajaxRequest(aliasURI).byPutMethod();
+        ajaxRequest.send().then(function() {
+          displayLocations();
+        });
+      }
 
-  <div id="browserLocation">
-  <div id="browsingArea" style="display:none;">
-    <div class="header">
-      <h3><fmt:message key="kmelia.paths.external.add"/></h3>
-    </div>
-    <div id="currentPath"></div>
-    <div id="spaces">
-      <h4><fmt:message key="GML.spaces"/></h4>
-      <ul></ul>
-    </div>
-    <div id="components">
-      <h4><fmt:message key="GML.components"/></h4>
-      <ul></ul>
-    </div>
-  </div>
-  <div id="treeview" class="accordion">
-    <h4><fmt:message key="GML.folders"/></h4>
-    <div id="treeviewFolders"></div>
-  </div>
-  </div>
+      function displayLocations() {
+        let ajaxRequest = sp.ajaxRequest(
+            webContext + "/services/private/publications/<%=componentId%>/<%=id%>/locations?lang=" +
+            getUserLanguage());
+        ajaxRequest.send().then(function(response) {
+          let lis = "";
+          response.responseAsJson().forEach(function(location) {
+            let locationId = location.id + "-" + location.componentId;
+            let li = "<li id=\"" + locationId + "\"><span class=\"location-path\">" +
+                location.path + "</span>";
+            if (location.alias) {
+              li += "<span class=\"location-user\">" + location.user.fullName + "</span>";
+              li += "<span class=\"location-date\">" + sp.moment.displayAsDateTime(location.date) +
+                  "</span>";
+              li += "<a class=\"delete-button\" href=\"#\" onclick=\"deleteAlias('" + location.uri +
+                  "', '" + locationId + "')\">Supprimer</a>";
+            }
+            li += "</li>";
+            lis += li;
+          });
+          $("#currentLocations ul").html(lis);
+        });
+      }
 
-        <%
-    	out.println(board.printAfter());
+      function topicGoTo(id) {
+        location.href = "GoToTopic?Id=" + id;
+      }
+    </script>
+  </view:sp-head-part>
+  <view:sp-body-part cssClass="kmelia path locations">
+    <view:browseBar spaceId="${spaceId}" componentId="${componentId}" path="${linkedPathString}" extraInformations="${pubName}"/>
+    <view:window>
+      <%
+        KmeliaDisplayHelper.displayAllOperations(id, kmeliaScc, gef, "ViewPath", resources, out);
+        if (publication.getLocation().isTrash()) {
+          out.println("<div class=\"inlineMessage\">" + kmeliaScc.getString("kmelia.PubInBasket") +
+              "</div>");
+        }
 
-        out.println(frame.printAfter());
-        out.println(window.printAfter());
-%>
-</body>
-</html>
+      %>
+      <view:frame>
+        <view:board>
+          <div id="currentLocations">
+            <div class="header">
+              <h3><fmt:message key="kmelia.paths.local"/></h3>
+            </div>
+            <ul></ul>
+          </div>
+
+          <div id="localLocations">
+            <div class="header">
+              <h3><fmt:message key="kmelia.paths.local.add"/></h3>
+            </div>
+            <div id="localTreeview" class="accordion"></div>
+          </div>
+
+          <div id="browserLocation">
+            <div id="browsingArea" style="display:none;">
+              <div class="header">
+                <h3><fmt:message key="kmelia.paths.external.add"/></h3>
+              </div>
+              <div id="currentPath"></div>
+              <div id="spaces">
+                <h4><fmt:message key="GML.spaces"/></h4>
+                <ul></ul>
+              </div>
+              <div id="components">
+                <h4><fmt:message key="GML.components"/></h4>
+                <ul></ul>
+              </div>
+            </div>
+            <div id="treeview" class="accordion">
+              <h4><fmt:message key="GML.folders"/></h4>
+              <div id="treeviewFolders"></div>
+            </div>
+          </div>
+        </view:board>
+      </view:frame>
+    </view:window>
+  </view:sp-body-part>
+</view:sp-page>
\ No newline at end of file
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationViewOnly.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationViewOnly.jsp
index 4e1076e7af..50af1d1d44 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationViewOnly.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationViewOnly.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.components.kmelia.jstl.KmeliaDisplayHelper"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationsList.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationsList.jsp
index 1a8a3b02b7..1c2c54b400 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationsList.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationsList.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationsNonVisibles.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationsNonVisibles.jsp
index 0076189bd0..e84a7b0547 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationsNonVisibles.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationsNonVisibles.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationsToValidate.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationsToValidate.jsp
index 45074d7000..867866c376 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationsToValidate.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/publicationsToValidate.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/readingControlManager.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/readingControlManager.jsp
index 32ab63f853..4346ddc7fd 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/readingControlManager.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/readingControlManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/reportImportFiles.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/reportImportFiles.jsp
index 49035b9c31..424e018c78 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/reportImportFiles.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/reportImportFiles.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/repository.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/repository.jsp
index 923ad880d7..4ad5fed5fa 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/repository.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/repository.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/simpleListOfPublications.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/simpleListOfPublications.jsp
index a714130efa..68ca7d280e 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/simpleListOfPublications.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/simpleListOfPublications.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -38,130 +38,125 @@
 <%@ page import="org.silverpeas.core.web.selection.BasketSelectionUI" %>
 
 <c:set var='highestUserRole' value='<%=SilverpeasRole.fromString((String) request.getAttribute("Profile"))%>'/>
+<c:set var="componentId" value="<%=componentId%>"/>
 
 <%
-String id = "0";
+  String id = "0";
+
+  String namePath = spaceLabel + " > " + componentLabel;
+  String 	profile			= (String) request.getAttribute("Profile");
+  String  translation 	= (String) request.getAttribute("Language");
+  boolean	isGuest			= (Boolean) request.getAttribute("IsGuest");
+  Boolean displaySearch	= (Boolean) request.getAttribute("DisplaySearch");
+  int		currentPageIndex = (Integer) request.getAttribute("PageIndex");
+  SearchContext searchContext = (SearchContext) request.getAttribute("SearchContext");
+  String		pubIdToHighlight	= (String) request.getAttribute("PubIdToHighlight"); //used when we have found publication from search (only toolbox)
+  String language = kmeliaScc.getLanguage();
+  String urlTopic	= URLUtil.getSimpleURL(URLUtil.URL_COMPONENT, componentId, true);
+  String userId = kmeliaScc.getUserId();
+
+  boolean userCanCreatePublications = SilverpeasRole.ADMIN.isInRole(profile) || SilverpeasRole.PUBLISHER
+      .isInRole(profile) || SilverpeasRole.WRITER.isInRole(profile);
+  boolean userCanValidatePublications = SilverpeasRole.ADMIN.isInRole(profile) || SilverpeasRole.PUBLISHER
+      .isInRole(profile);
+
+  boolean userCanSeeStats = kmeliaScc.isStatisticAllowed();
 
-// création du nom pour les favoris
-String namePath = spaceLabel + " > " + componentLabel;
+%>
 
-//R?cup?ration des param?tres
-String 	profile			= (String) request.getAttribute("Profile");
-String  translation 	= (String) request.getAttribute("Language");
-boolean	isGuest			= (Boolean) request.getAttribute("IsGuest");
-Boolean displaySearch	= (Boolean) request.getAttribute("DisplaySearch");
-int		currentPageIndex = (Integer) request.getAttribute("PageIndex");
+<view:sp-page>
+  <view:sp-head-part>
+    <view:includePlugin name="subscription"/>
+    <view:includePlugin name="preview"/>
+    <view:includePlugin name="rating" />
+    <view:includePlugin name="basketSelection"/>
+
+    <view:script src="javaScript/navigation.js"/>
+    <view:script src="javaScript/searchInTopic.js"/>
+    <view:script src="javaScript/publications.js"/>
+    <script type="text/javascript">
+      var isSearchTopicEnabled = <%=displaySearch.booleanValue()%>;
+      sp.i18n.load({
+        bundle : 'org.silverpeas.kmelia.multilang.kmeliaBundle',
+        language : '<%=language%>'
+      });
+
+      function getString(key) {
+        return sp.i18n.get(key);
+      }
 
-SearchContext searchContext = (SearchContext) request.getAttribute("SearchContext");
-String query = "";
-if (searchContext != null) {
-  query = searchContext.getQuery();
-}
+      function getCurrentNodeId() {
+        return "0";
+      }
 
-String		pubIdToHighlight	= (String) request.getAttribute("PubIdToHighlight"); //used when we have found publication from search (only toolbox)
+      function getCurrentUserId() {
+        return "<%=userId%>";
+      }
 
-String language = kmeliaScc.getLanguage();
+      function getWebContext() {
+        return "<%=m_context%>";
+      }
 
-String urlTopic	= URLUtil.getSimpleURL(URLUtil.URL_COMPONENT, componentId, true);
+      function getComponentId() {
+        return "${componentId}";
+      }
 
-String userId = kmeliaScc.getUserId();
+      function getPubIdToHighlight() {
+        return "<%=pubIdToHighlight%>";
+      }
 
-boolean userCanCreatePublications = SilverpeasRole.ADMIN.isInRole(profile) || SilverpeasRole.PUBLISHER
-    .isInRole(profile) || SilverpeasRole.WRITER.isInRole(profile);
-boolean userCanValidatePublications = SilverpeasRole.ADMIN.isInRole(profile) || SilverpeasRole.PUBLISHER
-    .isInRole(profile);
+      function fileUpload() {
+        document.fupload.submit();
+      }
 
-boolean userCanSeeStats = kmeliaScc.isStatisticAllowed();
+      function getPubIdToHighlight() {
+        return "<%=pubIdToHighlight%>";
+      }
 
-%>
+      function topicWysiwyg() {
+        closeWindows();
+        document.topicDetailForm.action = "ToTopicWysiwyg";
+        document.topicDetailForm.ChildId.value = "0";
+        document.topicDetailForm.submit();
+      }
 
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" id="ng-app" ng-app="silverpeas.kmelia" lang="<%=language%>">
-<head>
-<view:looknfeel/>
-	<title></title>
-<view:includePlugin name="subscription"/>
-<view:includePlugin name="preview"/>
-<view:includePlugin name="rating" />
-<view:includePlugin name="basketSelection"/>
-
-<view:script src="javaScript/navigation.js"/>
-<view:script src="javaScript/searchInTopic.js"/>
-<view:script src="javaScript/publications.js"/>
-<script type="text/javascript">
-
-sp.i18n.load({
-  bundle : 'org.silverpeas.kmelia.multilang.kmeliaBundle',
-  language : '<%=language%>'
-});
-
-function getString(key) {
-	return sp.i18n.get(key);
-}
-
-function getCurrentNodeId() {
-	return "0";
-}
-
-function getCurrentUserId() {
-  return "<%=userId%>";
-}
-
-function getWebContext() {
-	return "<%=m_context%>";
-}
-
-function getComponentId() {
-	return "<%=componentId%>";
-}
-
-function getPubIdToHighlight() {
-  return "<%=pubIdToHighlight%>";
-}
-
-function fileUpload() {
-    document.fupload.submit();
-}
-
-function getPubIdToHighlight() {
-	return "<%=pubIdToHighlight%>";
-}
-
-function topicWysiwyg() {
-	closeWindows();
-	document.topicDetailForm.action = "ToTopicWysiwyg";
-	document.topicDetailForm.ChildId.value = "0";
-	document.topicDetailForm.submit();
-}
-
-function pasteFromOperations() {
-  checkOnPaste('0');
-}
-
-function pasteDone(folderId) {
-  displayPublications(folderId);
-}
-
-var searchInProgress = <%=searchContext != null%>;
-
-$(document).ready(function() {
-	if (searchInProgress) {
-		doPagination(<%=currentPageIndex%>);
-	} else {
-		displayPublications("<%=id%>");
-	}
-	displayTopicDescription("0");
-});
-
-window.SUBSCRIPTION_PROMISE.then(function() {
-  window.spSubManager = new SilverpeasSubscriptionManager('<%=componentId%>');
-});
-</script>
-</head>
-<body id="kmelia" onunload="closeWindows()" class="yui-skin-sam">
-<div compile-directive style="display: none"></div>
-<div id="<%=componentId %>">
-<%
+      function pasteFromOperations() {
+        checkOnPaste('0');
+      }
+
+      function pasteDone(folderId) {
+        displayPublications(folderId);
+      }
+
+      function focusOnSearch()
+      {
+        $("#topicQuery").focus();
+      }
+
+      var searchInProgress = <%=searchContext != null%>;
+
+      $(document).ready(function() {
+        if (searchInProgress) {
+          doPagination(<%=currentPageIndex%>);
+        } else {
+          displayPublications("<%=id%>");
+        }
+        displayTopicDescription("0");
+        if (isSearchTopicEnabled) {
+          setTimeout(focusOnSearch,500);
+        }
+
+      });
+
+      window.SUBSCRIPTION_PROMISE.then(function() {
+        window.spSubManager = new SilverpeasSubscriptionManager('<%=componentId%>');
+      });
+    </script>
+  </view:sp-head-part>
+  <view:sp-body-part cssClass="yui-skin-sam treeView" id="${componentId}">
+    <div compile-directive style="display: none"></div>
+    <div id="<%=componentId %>">
+      <%
         Window window = gef.getWindow();
         BrowseBar browseBar = window.getBrowseBar();
         browseBar.setI18N("GoToCurrentTopic", translation);
@@ -169,114 +164,116 @@ window.SUBSCRIPTION_PROMISE.then(function() {
         //Display operations
         OperationPane operationPane = window.getOperationPane();
         if (SilverpeasRole.ADMIN.isInRole(profile)){
-          	if (kmeliaScc.isPdcUsed()) {
-	        	operationPane.addOperation("useless", resources.getString("GML.PDCParam"), "javascript:onClick=openSPWindow('"+m_context+"/RpdcUtilization/jsp/Main?ComponentId="+kmeliaScc.getComponentId()+"','utilizationPdc1')");
-                operationPane.addOperation("useless", resources.getString("GML.PDCPredefinePositions"), "javascript:onClick=openPredefinedPdCClassification(" + id + ");");
-          	}
-          	if (kmeliaScc.isContentEnabled()) {
-	        	operationPane.addOperation(resources.getIcon("kmelia.modelUsed"), resources.getString("kmelia.ModelUsed"), "ModelUsed");
-          	}
-          	if (kmeliaScc.isWysiwygOnTopicsEnabled()) {
-				operationPane.addOperation("useless", kmeliaScc.getString("TopicWysiwyg"), "javascript:onClick=topicWysiwyg('"+id+"')");
-			}
+          if (kmeliaScc.isPdcUsed()) {
+            operationPane.addOperation("useless", resources.getString("GML.PDCParam"), "javascript:onClick=openSPWindow('"+m_context+"/RpdcUtilization/jsp/Main?ComponentId="+kmeliaScc.getComponentId()+"','utilizationPdc1')");
+            operationPane.addOperation("useless", resources.getString("GML.PDCPredefinePositions"), "javascript:onClick=openPredefinedPdCClassification(" + id + ");");
+          }
+          if (kmeliaScc.isContentEnabled()) {
+            operationPane.addOperation(resources.getIcon("kmelia.modelUsed"), resources.getString("kmelia.ModelUsed"), "ModelUsed");
+          }
+          if (kmeliaScc.isWysiwygOnTopicsEnabled()) {
+            operationPane.addOperation("useless", kmeliaScc.getString("TopicWysiwyg"), "javascript:onClick=topicWysiwyg('"+id+"')");
+          }
           if (SilverpeasRole.ADMIN.isInRole(profile)) {
             operationPane.addOperation("useless", resources.getString("GML.manageSubscriptions"), "ManageSubscriptions");
           }
-          	if (kmeliaScc.isExportComponentAllowed() && kmeliaScc.isExportZipAllowed()) {
-	        	operationPane.addOperation("useless", kmeliaScc.getString("kmelia.ExportComponent"), "javascript:onClick=exportTopic()");
-          	}
-          	if (kmeliaScc.isExportComponentAllowed() && kmeliaScc.isExportPdfAllowed()) {
-	        	operationPane.addOperation("useless", kmeliaScc.getString("kmelia.ExportPDF"), "javascript:openExportPDFPopup()");
-          	}
-	        operationPane.addOperation(resources.getIcon("kmelia.sortPublications"), kmeliaScc.getString("kmelia.OrderPublications"), "ToOrderPublications");
-			operationPane.addLine();
+          if (kmeliaScc.isExportComponentAllowed() && kmeliaScc.isExportZipAllowed()) {
+            operationPane.addOperation("useless", kmeliaScc.getString("kmelia.ExportComponent"), "javascript:onClick=exportTopic()");
+          }
+          if (kmeliaScc.isExportComponentAllowed() && kmeliaScc.isExportPdfAllowed()) {
+            operationPane.addOperation("useless", kmeliaScc.getString("kmelia.ExportPDF"), "javascript:openExportPDFPopup()");
+          }
+          operationPane.addOperation(resources.getIcon("kmelia.sortPublications"), kmeliaScc.getString("kmelia.OrderPublications"), "ToOrderPublications");
+          operationPane.addLine();
         }
         if (userCanCreatePublications) {
-	        operationPane.addOperationOfCreation(resources.getIcon("kmelia.operation.addPubli"), kmeliaScc.getString("PubCreer"), "NewPublication");
-	        if (kmeliaScc.isImportFileAllowed()) {
-	      		operationPane.addOperationOfCreation(resources.getIcon("kmelia.operation.importFile"), kmeliaScc.getString("kmelia.ImportFile"), "javascript:onClick=importFile()");
-	        }
-	        if (kmeliaScc.isImportFilesAllowed()) {
-	        	operationPane.addOperationOfCreation(resources.getIcon("kmelia.operation.importFiles"), kmeliaScc.getString("kmelia.ImportFiles"), "javascript:onClick=importFiles()");
-	        }
-	        operationPane.addOperation("useless", resources.getString("kmelia.operation.copyPublications"), "javascript:onclick=copyPublications()");
-	        operationPane.addOperation("useless", resources.getString("kmelia.operation.cutPublications"), "javascript:onclick=cutPublications()");
-	        operationPane.addOperation(resources.getIcon("kmelia.paste"), resources.getString("GML.paste"), "javascript:onClick=pasteFromOperations()");
-	        operationPane.addOperation("useless", resources.getString("kmelia.operation.deletePublications"), "javascript:onclick=deletePublications()");
-	        operationPane.addLine();
-        }
-
-      if (!isGuest) {
-        if (BasketSelectionUI.displayPutIntoBasketSelectionShortcut()) {
-          operationPane.addOperation("useless", resources.getString("kmelia.operation.putPublicationsInBasket"), "javascript:onclick=putPublicationsInBasket()");
+          operationPane.addOperationOfCreation(resources.getIcon("kmelia.operation.addPubli"), kmeliaScc.getString("PubCreer"), "NewPublication");
+          if (kmeliaScc.isImportFileAllowed()) {
+            operationPane.addOperationOfCreation(resources.getIcon("kmelia.operation.importFile"), kmeliaScc.getString("kmelia.ImportFile"), "javascript:onClick=importFile()");
+          }
+          if (kmeliaScc.isImportFilesAllowed()) {
+            operationPane.addOperationOfCreation(resources.getIcon("kmelia.operation.importFiles"), kmeliaScc.getString("kmelia.ImportFiles"), "javascript:onClick=importFiles()");
+          }
+          operationPane.addOperation("useless", resources.getString("kmelia.operation.copyPublications"), "javascript:onclick=copyPublications()");
+          operationPane.addOperation("useless", resources.getString("kmelia.operation.cutPublications"), "javascript:onclick=cutPublications()");
+          operationPane.addOperation(resources.getIcon("kmelia.paste"), resources.getString("GML.paste"), "javascript:onClick=pasteFromOperations()");
+          operationPane.addOperation("useless", resources.getString("kmelia.operation.deletePublications"), "javascript:onclick=deletePublications()");
           operationPane.addLine();
         }
-        operationPane.addOperation("useless", resources.getString("kmelia.operation.exportSelection"), "javascript:onclick=exportPublications()");
-        operationPane.addOperation("useless", "<span id='subscriptionMenuLabel'></span>", "javascript:onClick=spSubManager.switchUserSubscription()");
-        operationPane.addOperation("useless", resources.getString("FavoritesAdd1")+" "+kmeliaScc.getString("FavoritesAdd2"), "javaScript:addFavorite('"+
+
+        if (!isGuest) {
+          if (BasketSelectionUI.displayPutIntoBasketSelectionShortcut()) {
+            operationPane.addOperation("useless", resources.getString("kmelia.operation.putPublicationsInBasket"), "javascript:onclick=putPublicationsInBasket()");
+            operationPane.addLine();
+          }
+          operationPane.addOperation("useless", resources.getString("kmelia.operation.exportSelection"), "javascript:onclick=exportPublications()");
+          operationPane.addOperation("useless", "<span id='subscriptionMenuLabel'></span>", "javascript:onClick=spSubManager.switchUserSubscription()");
+          operationPane.addOperation("useless", resources.getString("FavoritesAdd1")+" "+kmeliaScc.getString("FavoritesAdd2"), "javaScript:addFavorite('"+
               WebEncodeHelper.javaStringToHtmlString(WebEncodeHelper.javaStringToJsString(namePath))+"','','"+urlTopic+"')");
-      }
+        }
 
-    	if (userCanCreatePublications) {
-      		operationPane.addLine();
-          	operationPane.addOperation("useless", resources.getString("PubBasket"), "GoToBasket");
-          	if (userCanValidatePublications) {
-          		operationPane.addOperation("useless", resources.getString("ToValidate"), "ViewPublicationsToValidate");
-              operationPane.addOperation("useless", resources.getString("kmelia.folder.nonvisiblepubs"), "ViewPublicationsNonVisibles");
-          	}
-  		}
-      if (userCanSeeStats) {
-        operationPane.addLine();
-        operationPane.addOperation("useless", resources.getString("kmelia.operation.statistics"), "javascript:showStats();");
-      }
+        if (userCanCreatePublications) {
+          operationPane.addLine();
+          operationPane.addOperation("useless", resources.getString("PubBasket"), "GoToBasket");
+          if (userCanValidatePublications) {
+            operationPane.addOperation("useless", resources.getString("ToValidate"), "ViewPublicationsToValidate");
+            operationPane.addOperation("useless", resources.getString("kmelia.folder.nonvisiblepubs"), "ViewPublicationsNonVisibles");
+          }
+        }
+        if (userCanSeeStats) {
+          operationPane.addLine();
+          operationPane.addOperation("useless", resources.getString("kmelia.operation.statistics"), "javascript:showStats();");
+        }
 
-    out.println(window.printBefore());
-%>
-<view:frame>
-					<kmelia:searchZone enabled="<%=displaySearch%>"/>
-					<div id="topicDescription" class="rich-content"></div>
-					<view:areaOfOperationOfCreation/>
-          <div class="dragAndDropUpload" style="min-height: 75px">
-            <div id="pubList">
+        out.println(window.printBefore());
+      %>
+      <view:frame>
+        <kmelia:searchZone enabled="<%=displaySearch%>"/>
+        <div id="topicDescription" class="rich-content"></div>
+        <view:areaOfOperationOfCreation/>
+        <div class="dragAndDropUpload" style="min-height: 75px">
+          <div id="pubList">
+            <br/>
+            <view:board>
+              <br/>
+              <span text-align="center"><%=resources.getString("kmelia.inProgressPublications") %>
+                    <br/><br/><img alt="progress..." src="<%=resources.getIcon("kmelia.progress") %>"/></span>
               <br/>
-              <view:board>
-                <br/>
-                <span text-align="center"><%=resources.getString("kmelia.inProgressPublications") %>
-                  <br/><br/><img alt="progress..." src="<%=resources.getIcon("kmelia.progress") %>"/></span>
-                <br/>
-              </view:board>
-            </div>
+            </view:board>
           </div>
-					<div id="footer" class="txtBaseline"></div>
-	</view:frame>
-	<%
-		out.println(window.printAfter());
-	%>
-
-<form name="topicDetailForm" method="post">
-	<input type="hidden" name="Id" value="<%=id%>"/>
-	<input type="hidden" name="Path" value=""/>
-	<input type="hidden" name="ChildId"/>
-	<input type="hidden" name="Status"/><input type="hidden" name="Recursive"/>
-</form>
-
-<form name="pubForm" action="ViewPublication" method="GET">
-	<input type="hidden" name="PubId"/>
-</form>
-
-<form name="fupload" action="fileUpload.jsp" method="post" enctype="multipart/form-data" accept-charset="UTF-8">
-	<input type="hidden" name="Action" value="initial"/>
-</form>
-
-</div>
-
-<%@ include file="../../sharing/jsp/createTicketPopin.jsp" %>
-<view:progressMessage/>
-<kmelia:paste highestUserRole="${highestUserRole}" componentInstanceId="<%=componentId%>" />
-<kmelia:dragAndDrop highestUserRole="${highestUserRole}" componentInstanceId="<%=componentId%>" forceIgnoreFolder="true" contentLanguage="<%=translation%>" />
-<script type="text/javascript">
-/* declare the module myapp and its dependencies (here in the silverpeas module) */
-var myapp = angular.module('silverpeas.kmelia', ['silverpeas.services', 'silverpeas.directives']);
-</script>
-</body>
-</html>
+        </div>
+        <div id="footer" class="txtBaseline"></div>
+      </view:frame>
+      <%
+        out.println(window.printAfter());
+      %>
+
+      <form name="topicDetailForm" method="post">
+        <input type="hidden" name="Id" value="<%=id%>"/>
+        <input type="hidden" name="Path" value=""/>
+        <input type="hidden" name="ChildId"/>
+        <input type="hidden" name="Status"/><input type="hidden" name="Recursive"/>
+      </form>
+
+      <form name="pubForm" action="ViewPublication" method="GET">
+        <input type="hidden" name="PubId"/>
+      </form>
+
+      <form name="fupload" action="fileUpload.jsp" method="post" enctype="multipart/form-data" accept-charset="UTF-8">
+        <input type="hidden" name="Action" value="initial"/>
+      </form>
+
+    </div>
+
+    <%@ include file="../../sharing/jsp/createTicketPopin.jsp" %>
+    <view:progressMessage/>
+    <kmelia:paste highestUserRole="${highestUserRole}" componentInstanceId="<%=componentId%>" />
+    <kmelia:dragAndDrop highestUserRole="${highestUserRole}" componentInstanceId="<%=componentId%>" forceIgnoreFolder="true" contentLanguage="<%=translation%>" />
+    <script type="text/javascript">
+      /* declare the module myapp and its dependencies (here in the silverpeas module) */
+      var myapp = angular.module('silverpeas.kmelia', ['silverpeas.services', 'silverpeas.directives']);
+      if (isSearchTopicEnabled)
+        $("#topicQuery").focus();
+    </script>
+  </view:sp-body-part>
+</view:sp-page>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/statisticsTopic.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/statisticsTopic.jsp
index fc084eecd9..f1f4c7b323 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/statisticsTopic.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/statisticsTopic.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/styleSheets/kmelia.css b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/styleSheets/kmelia.css
index f01dbdc6f7..98fd827cfa 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/styleSheets/kmelia.css
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/styleSheets/kmelia.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 html , body.treeView,
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/styleSheets/pubHighlight.css b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/styleSheets/pubHighlight.css
index 04f5a20e2f..a2a875a0ae 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/styleSheets/pubHighlight.css
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/styleSheets/pubHighlight.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 .highlight-silver { 
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/styleSheets/tree.css b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/styleSheets/tree.css
index 44673ae2a8..db0c245e5e 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/styleSheets/tree.css
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/styleSheets/tree.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 .ygtvtn { background: url(../icons/treeview/tn.gif) 0 0 no-repeat; width:17px; height:22px; }
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/topicProfiles.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/topicProfiles.jsp
index 999193a93d..1b87efd514 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/topicProfiles.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/topicProfiles.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -62,7 +62,7 @@ function topicGoTo(id) {
 	location.href="GoToTopic?Id="+id;
 }
 function backToFolder() {
-  location.href="ToUpdateTopic?Id=<%=nodeId%>";
+  location.href="ToModifyTopic?Id=<%=nodeId%>";
 }
 </script>
 </head>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/treeview.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/treeview.jsp
index f0697fe8aa..8bf645575e 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/treeview.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/treeview.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.components.kmelia.KmeliaPublicationHelper"%>
@@ -43,41 +43,38 @@
 
 <c:set var='highestUserRole' value='<%=SilverpeasRole.fromString((String) request.getAttribute("Profile"))%>'/>
 <view:setConstant var="adminRole" constant="org.silverpeas.core.admin.user.model.SilverpeasRole.ADMIN"/>
+<c:set var="displaySearch" value="${silfn:booleanValue(requestScope.DisplaySearch)}"/>
+<c:set var="componentId" value="<%=componentId%>"/>
 
 <fmt:message key="GML.ForbiddenAccessContent" var="labelForbiddenAccess"/>
 
 <%
-String		rootId				= "0";
+  String		rootId				= "0";
 
 //R?cup?ration des param?tres
-String 	profile			= (String) request.getAttribute("Profile");
-String  translation 	= (String) request.getAttribute("Language");
-boolean displayNBPublis = (Boolean) request.getAttribute("DisplayNBPublis");
-Boolean rightsOnTopics  = (Boolean) request.getAttribute("RightsOnTopicsEnabled");
-Boolean displaySearch	= (Boolean) request.getAttribute("DisplaySearch");
-SearchContext searchContext = (SearchContext) request.getAttribute("SearchContext");
-int		currentPageIndex = (Integer) request.getAttribute("PageIndex");
+  String 	profile			= (String) request.getAttribute("Profile");
+  String  translation 	= (String) request.getAttribute("Language");
+  boolean displayNBPublis = (Boolean) request.getAttribute("DisplayNBPublis");
+  Boolean rightsOnTopics  = (Boolean) request.getAttribute("RightsOnTopicsEnabled");
+  SearchContext searchContext = (SearchContext) request.getAttribute("SearchContext");
+  int		currentPageIndex = (Integer) request.getAttribute("PageIndex");
 
-String pubIdToHighlight	= (String) request.getAttribute("PubIdToHighlight"); //used when we have found publication from search (only toolbox)
+  String pubIdToHighlight	= (String) request.getAttribute("PubIdToHighlight"); //used when we have found publication from search (only toolbox)
 
-String id = (String) request.getAttribute("CurrentFolderId");
-String language = kmeliaScc.getLanguage();
+  String id = (String) request.getAttribute("CurrentFolderId");
+  String language = kmeliaScc.getLanguage();
 
-if (id == null) {
-	id = rootId;
-}
+  if (id == null) {
+    id = rootId;
+  }
 
-String userId = kmeliaScc.getUserId();
+  String userId = kmeliaScc.getUserId();
 
-boolean userCanManageRoot = "admin".equalsIgnoreCase(profile);
-boolean userCanManageTopics = rightsOnTopics || "admin".equalsIgnoreCase(profile) || kmeliaScc.isTopicManagementDelegated();
+  boolean userCanManageRoot = "admin".equalsIgnoreCase(profile);
+  boolean userCanManageTopics = rightsOnTopics || "admin".equalsIgnoreCase(profile) || kmeliaScc.isTopicManagementDelegated();
 %>
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" id="ng-app" ng-app="silverpeas.kmelia">
-<head>
-  <title></title>
-  <view:looknfeel withCheckFormScript="true"/>
+<view:sp-page>
+<view:sp-head-part withCheckFormScript="true">
   <view:script src="/util/javaScript/browseBarComplete.js"/>
   <view:script src="/util/javaScript/jquery/jstree.min.js"/>
   <view:script src="/util/javaScript/jquery/jquery.cookie.js"/>
@@ -88,518 +85,522 @@ boolean userCanManageTopics = rightsOnTopics || "admin".equalsIgnoreCase(profile
   <view:includePlugin name="rating" />
   <view:includePlugin name="basketSelection"/>
 
-<view:script src="javaScript/navigation.js"/>
-<view:script src="javaScript/searchInTopic.js"/>
-<view:script src="javaScript/publications.js"/>
-<script type="text/javascript">
-function topicGoTo(id) {
-    closeWindows();
-    displayTopicContent(id);
-    getTreeview().deselect_all();
-    var node = getTreeview().get_node('#'+id);
-    getTreeview().select_node(node);
-}
-
-function getCurrentUserId() {
-  return "<%=userId%>";
-}
-
-function getWebContext() {
-	return "<%=m_context%>";
-}
-
-function getComponentId() {
-	return "<%=componentId%>";
-}
-
-function getComponentLabel() {
-	return "<%=WebEncodeHelper.javaStringToJsString(WebEncodeHelper.javaStringToHtmlString(
+  <view:script src="javaScript/navigation.js"/>
+  <view:script src="javaScript/searchInTopic.js"/>
+  <view:script src="javaScript/publications.js"/>
+  <script type="text/javascript">
+    var isSearchTopicEnabled = ${displaySearch};
+
+    function topicGoTo(id) {
+      closeWindows();
+      displayTopicContent(id);
+      getTreeview().deselect_all();
+      var node = getTreeview().get_node('#'+id);
+      getTreeview().select_node(node);
+    }
+
+    function getCurrentUserId() {
+      return "<%=userId%>";
+    }
+
+    function getWebContext() {
+      return "<%=m_context%>";
+    }
+
+    function getComponentId() {
+      return "${componentId}";
+    }
+
+    function getComponentLabel() {
+      return "<%=WebEncodeHelper.javaStringToJsString(WebEncodeHelper.javaStringToHtmlString(
       componentLabel))%>";
-}
-
-function getLanguage() {
-	return "<%=language%>";
-}
-
-function getPubIdToHighlight() {
-	return "<%=pubIdToHighlight%>";
-}
-
-function getTranslation() {
-	return "<%=translation%>";
-}
-
-function getToValidateFolderId() {
-	return "<%=KmeliaHelper.SPECIALFOLDER_TOVALIDATE%>";
-}
-
-function getNonVisiblePubsFolderId() {
-  return "<%=KmeliaHelper.SPECIALFOLDER_NONVISIBLEPUBS%>";
-}
-
-function isSpecialFolder(id) {
-  return id === getToValidateFolderId() || id === getNonVisiblePubsFolderId();
-}
-
-function getCurrentFolderId() {
-  return "<%=id%>";
-}
-
-function arePublicationsOnRootAllowed() {
-  return <%=KmeliaPublicationHelper.isPublicationsOnRootAllowed(componentId)%>;
-}
-
-var icons = new Object();
-icons["permalink"] = "<%=resources.getIcon("kmelia.link")%>";
-icons["operation.addTopic"] = "<%=resources.getIcon("kmelia.operation.addTopic")%>";
-icons["operation.addPubli"] = "<%=resources.getIcon("kmelia.operation.addPubli")%>";
-icons["operation.importFile"] = "<%=resources.getIcon("kmelia.operation.importFile")%>";
-icons["operation.importFiles"] = "<%=resources.getIcon("kmelia.operation.importFiles")%>";
-icons["operation.subscribe"] = "<%=resources.getIcon("kmelia.operation.subscribe")%>";
-icons["operation.favorites"] = "<%=resources.getIcon("kmelia.operation.favorites")%>";
-
-var params = new Object();
-params["rightsOnTopic"] = <%=rightsOnTopics.booleanValue()%>;
-params["i18n"] = <%=I18NHelper.isI18nContentActivated%>;
-params["nbPublisDisplayed"] = <%=displayNBPublis%>;
-
-var searchInProgress = <%=searchContext != null%>;
-var searchFolderId = "<%=id%>";
-</script>
-</head>
-<body id="kmelia" onunload="closeWindows()" class="yui-skin-sam treeView">
-<div compile-directive style="display: none"></div>
-<div id="<%=componentId %>" class="<%=profile%>">
-<%
+    }
+
+    function getLanguage() {
+      return "<%=language%>";
+    }
+
+    function getPubIdToHighlight() {
+      return "<%=pubIdToHighlight%>";
+    }
+
+    function getTranslation() {
+      return "<%=translation%>";
+    }
+
+    function getToValidateFolderId() {
+      return "<%=KmeliaHelper.SPECIALFOLDER_TOVALIDATE%>";
+    }
+
+    function getNonVisiblePubsFolderId() {
+      return "<%=KmeliaHelper.SPECIALFOLDER_NONVISIBLEPUBS%>";
+    }
+
+    function isSpecialFolder(id) {
+      return id === getToValidateFolderId() || id === getNonVisiblePubsFolderId();
+    }
+
+    function getCurrentFolderId() {
+      return "<%=id%>";
+    }
+
+    function arePublicationsOnRootAllowed() {
+      return <%=KmeliaPublicationHelper.isPublicationsOnRootAllowed(componentId)%>;
+    }
+
+    var icons = new Object();
+    icons["permalink"] = "<%=resources.getIcon("kmelia.link")%>";
+    icons["operation.addTopic"] = "<%=resources.getIcon("kmelia.operation.addTopic")%>";
+    icons["operation.addPubli"] = "<%=resources.getIcon("kmelia.operation.addPubli")%>";
+    icons["operation.importFile"] = "<%=resources.getIcon("kmelia.operation.importFile")%>";
+    icons["operation.importFiles"] = "<%=resources.getIcon("kmelia.operation.importFiles")%>";
+    icons["operation.subscribe"] = "<%=resources.getIcon("kmelia.operation.subscribe")%>";
+    icons["operation.favorites"] = "<%=resources.getIcon("kmelia.operation.favorites")%>";
+
+    var params = new Object();
+    params["rightsOnTopic"] = <%=rightsOnTopics.booleanValue()%>;
+    params["i18n"] = <%=I18NHelper.isI18nContentActivated%>;
+    params["nbPublisDisplayed"] = <%=displayNBPublis%>;
+
+    var searchInProgress = <%=searchContext != null%>;
+    var searchFolderId = "<%=id%>";
+  </script>
+</view:sp-head-part>
+<view:sp-body-part cssClass="yui-skin-sam treeView" id="${componentId}">
+  <div compile-directive style="display: none"></div>
+  <div id="<%=componentId %>" class="<%=profile%>">
+  <%
     Window window = gef.getWindow();
     BrowseBar browseBar = window.getBrowseBar();
     browseBar.setI18N("GoToCurrentTopic", translation);
 
     //Display operations - following lines are mandatory to init menu correctly
     OperationPane operationPane = window.getOperationPane();
-   	operationPane.addOperation("useless", resources.getString("FavoritesAdd1")+" "+resources.getString("FavoritesAdd2"), "javaScript:addCurrentNodeAsFavorite()");
+    operationPane.addOperation("useless", resources.getString("FavoritesAdd1")+" "+resources.getString("FavoritesAdd2"), "javaScript:addCurrentNodeAsFavorite()");
 
     out.println(window.printBefore());
-%>
-	<view:frame>
-	
-       
-         <div class="wrap">
-            <div class="resizable resizable1"><div id="treeDiv1"></div></div>
-				<div id="rightSide" class="resizable resizable2">
-          <kmelia:searchZone enabled="<%=displaySearch%>"/>
-					<div id="topicDescription" class="rich-content"></div>
-					<view:areaOfOperationOfCreation/>
-          <div class="dragAndDropUpload" style="min-height: 75px">
-            <div id="pubList">
+  %>
+  <view:frame>
+    <div class="wrap">
+      <div class="resizable resizable1"><div id="treeDiv1"></div></div>
+      <div id="rightSide" class="resizable resizable2">
+        <kmelia:searchZone enabled="${displaySearch}"/>
+        <div id="topicDescription" class="rich-content"></div>
+        <view:areaOfOperationOfCreation/>
+        <div class="dragAndDropUpload" style="min-height: 75px">
+          <div id="pubList">
+            <br/>
+            <view:board>
               <br/>
-              <view:board>
-                <br/>
-                <center><%=resources.getString("kmelia.inProgressPublications") %>
-                  <br/><br/><img src="<%=resources.getIcon("kmelia.progress") %>"/></center>
-                <br/>
-              </view:board>
-            </div>
+              <center><%=resources.getString("kmelia.inProgressPublications") %>
+                <br/><br/><img src="<%=resources.getIcon("kmelia.progress") %>"/></center>
+              <br/>
+            </view:board>
           </div>
-					<div id="footer" class="txtBaseline"></div>
-				</div>
-			</div>
-		</view:frame>
-	<%
-		out.println(window.printAfter());
-	%>
-
-<form name="topicDetailForm" method="post">
-	<input type="hidden" name="Id" value="<%=id%>"/>
-	<input type="hidden" name="ChildId"/>
-	<input type="hidden" name="Status"/>
-	<input type="hidden" name="Recursive"/>
-</form>
-
-<form name="pubForm" action="ViewPublication" method="GET">
-	<input type="hidden" name="PubId"/>
-	<input type="hidden" id="CheckPath" name="CheckPath"/>
-</form>
-
-<form name="fupload" action="fileUpload.jsp" method="post" enctype="multipart/form-data" accept-charset="UTF-8">
-	<input type="hidden" name="Action" value="initial"/>
-</form>
-
-<script type="text/javascript">
-function getComponentPermalink() {
-	return "<%=URLUtil.getSimpleURL(URLUtil.URL_COMPONENT, componentId, false)%>";
-}
-
-function deleteNode(nodeId) {
-	// removing nb items displayed in nodeLabel
-  var node = getTreeview().get_node('#' + nodeId);
-  var nodeLabel = node.text;
-	if (params["nbPublisDisplayed"]) {
-		var idx = nodeLabel.lastIndexOf('(');
-		if (idx > 1) {
-			nodeLabel = nodeLabel.substring(0, idx-1);
-		}
-	}
-	deleteFolder(nodeId, nodeLabel);
-}
-
-function getNodeTitle(nodeId) {
-	var nodeTitle = getTreeview().get_text("#"+nodeId);
-	var idx = nodeTitle.lastIndexOf('(');
-	if (idx > 1) {
-		nodeTitle = nodeTitle.substring(0, idx-1);
-	}
-	return nodeTitle;
-}
-
-function getNbPublis(nodeId) {
-	var nodeLabel = getTreeview().get_text("#"+nodeId);
-	var idx = nodeLabel.lastIndexOf('(');
-	var nbPublis = nodeLabel.substring(idx+1, nodeLabel.length-1);
-	return eval(nbPublis);
-}
-
-function addNbPublis(nodeId, nb) {
-	var previousNbPublis = getNbPublis(nodeId);
-	var nodeTitle = getNodeTitle(nodeId);
-	var nbPublis = eval(previousNbPublis+nb);
-	getTreeview().rename_node("#"+nodeId, nodeTitle+" ("+nbPublis+")");
-}
-
-function nodeDeleted(nodeId) {
-	if (params["nbPublisDisplayed"]) {
-		// change nb publications on each parent of deleted node (except root)
-		var nbPublisRemoved = getNbPublis(nodeId);
-		var path = getTreeview().get_path("#"+nodeId, false, true);
-		path.forEach(function(elementId, index) {
-       if (elementId !== nodeId) {
+        </div>
+        <div id="footer" class="txtBaseline"></div>
+      </div>
+    </div>
+  </view:frame>
+  <%
+    out.println(window.printAfter());
+  %>
+
+  <form name="topicDetailForm" method="post">
+    <input type="hidden" name="Id" value="<%=id%>"/>
+    <input type="hidden" name="ChildId"/>
+    <input type="hidden" name="Status"/>
+    <input type="hidden" name="Recursive"/>
+  </form>
+
+  <form name="pubForm" action="ViewPublication" method="GET">
+    <input type="hidden" name="PubId"/>
+    <input type="hidden" id="CheckPath" name="CheckPath"/>
+  </form>
+
+  <form name="fupload" action="fileUpload.jsp" method="post" enctype="multipart/form-data" accept-charset="UTF-8">
+    <input type="hidden" name="Action" value="initial"/>
+  </form>
+
+  <script type="text/javascript">
+  function getComponentPermalink() {
+    return "<%=URLUtil.getSimpleURL(URLUtil.URL_COMPONENT, componentId, false)%>";
+  }
+
+  function deleteNode(nodeId) {
+    // removing nb items displayed in nodeLabel
+    var node = getTreeview().get_node('#' + nodeId);
+    var nodeLabel = node.text;
+    if (params["nbPublisDisplayed"]) {
+      var idx = nodeLabel.lastIndexOf('(');
+      if (idx > 1) {
+        nodeLabel = nodeLabel.substring(0, idx-1);
+      }
+    }
+    deleteFolder(nodeId, nodeLabel);
+  }
+
+  function getNodeTitle(nodeId) {
+    var nodeTitle = getTreeview().get_text("#"+nodeId);
+    var idx = nodeTitle.lastIndexOf('(');
+    if (idx > 1) {
+      nodeTitle = nodeTitle.substring(0, idx-1);
+    }
+    return nodeTitle;
+  }
+
+  function getNbPublis(nodeId) {
+    var nodeLabel = getTreeview().get_text("#"+nodeId);
+    var idx = nodeLabel.lastIndexOf('(');
+    var nbPublis = nodeLabel.substring(idx+1, nodeLabel.length-1);
+    return eval(nbPublis);
+  }
+
+  function addNbPublis(nodeId, nb) {
+    var previousNbPublis = getNbPublis(nodeId);
+    var nodeTitle = getNodeTitle(nodeId);
+    var nbPublis = eval(previousNbPublis+nb);
+    getTreeview().rename_node("#"+nodeId, nodeTitle+" ("+nbPublis+")");
+  }
+
+  function nodeDeleted(nodeId) {
+    if (params["nbPublisDisplayed"]) {
+      // change nb publications on each parent of deleted node (except root)
+      var nbPublisRemoved = getNbPublis(nodeId);
+      var path = getTreeview().get_path("#"+nodeId, false, true);
+      path.forEach(function(elementId, index) {
+        if (elementId !== nodeId) {
           applyWithNode(elementId, function(data) {
-             var nodeTitle = getNodeTitle(elementId);
-             var nbPublis = data.attr.nbItems;
-             getTreeview().rename_node("#"+elementId, nodeTitle+" ("+nbPublis+")");
+            var nodeTitle = getNodeTitle(elementId);
+            var nbPublis = data.attr.nbItems;
+            getTreeview().rename_node("#"+elementId, nodeTitle+" ("+nbPublis+")");
           });
-       }
-     });
-     var binId = '1';
-     applyWithNode(binId, function(data) {
+        }
+      });
+      var binId = '1';
+      applyWithNode(binId, function(data) {
         var nodeTitle = getNodeTitle(binId);
         var nbPublis = data.attr.nbItems;
         getTreeview().rename_node("#"+binId, nodeTitle+" ("+nbPublis+")");
-     });
-	}
-	getTreeview().delete_node("#"+nodeId);
-}
-
-function resetNbPublis(nodeId) {
-	var nodeTitle = getNodeTitle(nodeId);
-	getTreeview().rename_node("#"+nodeId, nodeTitle+" (0)");
-}
-
-function emptyTrash() {
-  var label = "<%=kmeliaScc.getString("ConfirmFlushTrashBean")%>";
-  jQuery.popup.confirm(label, function() {
-		$.progressMessage();
-		$.post('<%=m_context%>/KmeliaAJAXServlet', {ComponentId:'<%=componentId%>',Action:'EmptyTrash'},
-				function(data){
-					$.closeProgressMessage();
-					if (data == "ok") {
-						if (params["nbPublisDisplayed"]) {
-							// remove nb publis to root
-							var nbPublisDeleted = getNbPublis("1");
-							addNbPublis("0", 0-nbPublisDeleted);
-							// set nb publis on bin to 0
-							resetNbPublis("1");
-						}
-						displayTopicContent("1");
-					} else {
-						notyError(data);
-					}
-				}, 'text');
-	});
-}
-
-function copyNode(id)	{
-	top.IdleFrame.location.href = '../..<%=kmeliaScc.getComponentUrl()%>copy?Object=Node&Id='+id;
-}
-
-function copyCurrentNode()	{
-	copyNode(getCurrentNodeId());
-}
-
-function cutNode(id) {
-	top.IdleFrame.location.href = '../..<%=kmeliaScc.getComponentUrl()%>cut?Object=Node&Id='+id;
-}
-
-function cutCurrentNode() {
-	cutNode(getCurrentNodeId());
-}
-
-function changeCurrentTopicStatus() {
-	var node = getTreeview()._get_node("#"+getCurrentNodeId());
-	changeStatus(getCurrentNodeId(), node.original.attr["status"]);
-}
-
-function updateUIStatus(nodeId, newStatus, recursive) {
-	// updating data stored in treeview
-	var node = getTreeview().get_node("#"+nodeId);
-	node.original.attr["status"] = newStatus;
-
-	//changing label style according to topic's new status
-	$('#' + nodeId).removeClass("Visible Invisible").addClass(newStatus);
-
-	//
-	if (recursive == "1") {
-		var children = node.children;
-		for (var i=0; i<children.length; i++) {
-			try {
-				updateUIStatus(children[i].id, newStatus, recursive);
-			} catch (e) {
-			}
-		}
-	}
-
-	if (nodeId == getCurrentNodeId()) {
-		// refreshing operations of current folder
-		displayOperations(nodeId);
-	}
-}
-
-function displayTopicContent(id) {
-
-	if (id != searchFolderId) {
-		// search session is over
-		searchInProgress = false;
-	}
-
-	setCurrentNodeId(id);
-
-	if (!searchInProgress) {
-		clearSearchQuery();
-	}
-
-  var displayPublicationPromise;
-	if (isSpecialFolder(id) || id === "1") {
-		muteDragAndDrop(); //mute dropzone
-		$("#footer").css({'visibility':'hidden'}); //hide footer
-		$("#searchZone").css({'display':'none'}); //hide search
-
-		if (id === getToValidateFolderId())	{
-			hideOperations();
-
-			//update breadcrumb
-      removeBreadCrumbElements();
-      addBreadCrumbElement("#", "<%=resources.getString("ToValidate")%>");
-    } else if (id === getNonVisiblePubsFolderId()) {
-      hideOperations();
-
-      //update breadcrumb
-      removeBreadCrumbElements();
-      addBreadCrumbElement("#", "<%=resources.getString("kmelia.folder.nonvisiblepubs")%>");
-		} else {
-			displayOperations(id);
-			displayPath(id);
-		}
-    displayPublicationPromise = displayPublications(id);
-  } else {
-    displayPath(id);
-    displayOperations(id);
-    $("#searchZone").css({'display':'block'});
-		if (searchInProgress) {
-			doPagination(<%=currentPageIndex%>);
-		} else {
-			displayPublicationPromise = displayPublications(id);
-		}
-	}
-
-	//display topic information
-	displayTopicInformation(id);
-
-	//display topic rich description
-	displayTopicDescription(id);
-}
-
-var rightClickHelpAlreadyShown = false;
-function showRightClickHelp() {
-	var rightClickCookieName = "Silverpeas_GED_RightClickHelp";
-	var rightClickCookieValue = $.cookie(rightClickCookieName);
-	if (!rightClickHelpAlreadyShown && "IKnowIt" != rightClickCookieValue) {
-		rightClickHelpAlreadyShown = true;
-		$( "#rightClick-message" ).dialog({
-			modal: true,
-			resizable: false,
-			width: 400,
-			dialogClass: 'help-modal-message',
-			buttons: {
-				"<%=resources.getString("kmelia.help.rightclick.buttons.ok") %>": function() {
-					$.cookie(rightClickCookieName, "IKnowIt", { expires: 3650, path: '/', secure: ${pageContext.request.secure} });
-					$( this ).dialog( "close" );
-				},
-				"<%=resources.getString("kmelia.help.rightclick.buttons.remind") %>": function() {
-					$( this ).dialog( "close" );
-				}
-			}
-		});
-	}
-}
-
-function getTreeview() {
-	return $.jstree.reference("#treeDiv1");
-}
-
-function customMenu(node) {
-	<% if (!userCanManageTopics) { %>
-		//user can not manage folders
-		return false;
-	<% } %>
-
-	var nodeType = node.type;
-  var userRole = '<%=profile%>';
-	if (params["rightsOnTopic"]) {
-		userRole = node.original.attr["role"];
-	}
-	if (isSpecialFolder(nodeType)) {
-    	return false;
+      });
+    }
+    getTreeview().delete_node("#"+nodeId);
+  }
+
+  function resetNbPublis(nodeId) {
+    var nodeTitle = getNodeTitle(nodeId);
+    getTreeview().rename_node("#"+nodeId, nodeTitle+" (0)");
+  }
+
+  function emptyTrash() {
+    var label = "<%=kmeliaScc.getString("ConfirmFlushTrashBean")%>";
+    jQuery.popup.confirm(label, function() {
+      $.progressMessage();
+      $.post('<%=m_context%>/KmeliaAJAXServlet', {ComponentId:'<%=componentId%>',Action:'EmptyTrash'},
+          function(data){
+            $.closeProgressMessage();
+            if (data == "ok") {
+              if (params["nbPublisDisplayed"]) {
+                // remove nb publis to root
+                var nbPublisDeleted = getNbPublis("1");
+                addNbPublis("0", 0-nbPublisDeleted);
+                // set nb publis on bin to 0
+                resetNbPublis("1");
+              }
+              displayTopicContent("1");
+            } else {
+              notyError(data);
+            }
+          }, 'text');
+    });
+  }
+
+  function copyNode(id)	{
+    top.IdleFrame.location.href = '../..<%=kmeliaScc.getComponentUrl()%>copy?Object=Node&Id='+id;
+  }
+
+  function copyCurrentNode()	{
+    copyNode(getCurrentNodeId());
+  }
+
+  function cutNode(id) {
+    top.IdleFrame.location.href = '../..<%=kmeliaScc.getComponentUrl()%>cut?Object=Node&Id='+id;
+  }
+
+  function cutCurrentNode() {
+    cutNode(getCurrentNodeId());
+  }
+
+  function changeCurrentTopicStatus() {
+    var node = getTreeview()._get_node("#"+getCurrentNodeId());
+    changeStatus(getCurrentNodeId(), node.original.attr["status"]);
+  }
+
+  function updateUIStatus(nodeId, newStatus, recursive) {
+    // updating data stored in treeview
+    var node = getTreeview().get_node("#"+nodeId);
+    node.original.attr["status"] = newStatus;
+
+    //changing label style according to topic's new status
+    $('#' + nodeId).removeClass("Visible Invisible").addClass(newStatus);
+
+    //
+    if (recursive == "1") {
+      var children = node.children;
+      for (var i=0; i<children.length; i++) {
+        try {
+          updateUIStatus(children[i].id, newStatus, recursive);
+        } catch (e) {
+        }
+      }
+    }
+
+    if (nodeId == getCurrentNodeId()) {
+      // refreshing operations of current folder
+      displayOperations(nodeId);
+    }
+  }
+
+  function displayTopicContent(id) {
+
+    if (id != searchFolderId) {
+      // search session is over
+      searchInProgress = false;
+    }
+
+    setCurrentNodeId(id);
+
+    if (!searchInProgress) {
+      clearSearchQuery();
+    }
+
+    var displayPublicationPromise;
+    if (isSpecialFolder(id) || id === "1") {
+      muteDragAndDrop(); //mute dropzone
+      $("#footer").css({'visibility':'hidden'}); //hide footer
+      $("#searchZone").css({'display':'none'}); //hide search
+
+      if (id === getToValidateFolderId())	{
+        hideOperations();
+
+        //update breadcrumb
+        removeBreadCrumbElements();
+        addBreadCrumbElement("#", "<%=resources.getString("ToValidate")%>");
+      } else if (id === getNonVisiblePubsFolderId()) {
+        hideOperations();
+
+        //update breadcrumb
+        removeBreadCrumbElements();
+        addBreadCrumbElement("#", "<%=resources.getString("kmelia.folder.nonvisiblepubs")%>");
+      } else {
+        displayOperations(id);
+        displayPath(id);
+      }
+      displayPublicationPromise = displayPublications(id);
+    } else {
+      displayPath(id);
+      displayOperations(id);
+      $("#searchZone").css({'display':'block'});
+      if (searchInProgress) {
+        doPagination(<%=currentPageIndex%>);
+      } else {
+        displayPublicationPromise = displayPublications(id);
+      }
+    }
+
+    //display topic information
+    displayTopicInformation(id);
+
+    //display topic rich description
+    displayTopicDescription(id);
+
+    if (isSearchTopicEnabled)
+      $("#topicQuery").focus();
+
+  }
+
+  var rightClickHelpAlreadyShown = false;
+  function showRightClickHelp() {
+    var rightClickCookieName = "Silverpeas_GED_RightClickHelp";
+    var rightClickCookieValue = $.cookie(rightClickCookieName);
+    if (!rightClickHelpAlreadyShown && "IKnowIt" != rightClickCookieValue) {
+      rightClickHelpAlreadyShown = true;
+      $( "#rightClick-message" ).dialog({
+        modal: true,
+        resizable: false,
+        width: 400,
+        dialogClass: 'help-modal-message',
+        buttons: {
+          "<%=resources.getString("kmelia.help.rightclick.buttons.ok") %>": function() {
+            $.cookie(rightClickCookieName, "IKnowIt", { expires: 3650, path: '/', secure: ${pageContext.request.secure} });
+            $( this ).dialog( "close" );
+          },
+          "<%=resources.getString("kmelia.help.rightclick.buttons.remind") %>": function() {
+            $( this ).dialog( "close" );
+          }
+        }
+      });
+    }
+  }
+
+  function getTreeview() {
+    return $.jstree.reference("#treeDiv1");
+  }
+
+  function customMenu(node) {
+    <% if (!userCanManageTopics) { %>
+    //user can not manage folders
+    return false;
+    <% } %>
+
+    var nodeType = node.type;
+    var userRole = '<%=profile%>';
+    if (params["rightsOnTopic"]) {
+      userRole = node.original.attr["role"];
+    }
+    if (isSpecialFolder(nodeType)) {
+      return false;
     } else if (nodeType == "bin") {
-    	var binItems = {
-       			emptyItem: {
-       	            label: "<%=resources.getString("EmptyBasket")%>",
-       	            action: function () {
-       	            	emptyTrash();
-       	            }
-	        }
-        	};
-        return binItems;
+      var binItems = {
+        emptyItem: {
+          label: "<%=resources.getString("EmptyBasket")%>",
+          action: function () {
+            emptyTrash();
+          }
+        }
+      };
+      return binItems;
     }
 
     // The default set of all items
     var items = {
-    	addItem: {
-        	label: "<%=resources.getString("CreerSousTheme")%>",
-            action: function (obj) {
-              var node = getTreeview().get_node(obj.reference);
-            	topicAdd(node.id, false);
-            }
-        },
-    	editItem: {
-            label: "<%=resources.getString("ModifierSousTheme")%>",
-            action: function (obj) {
-              var node = getTreeview().get_node(obj.reference);
-            	var url = getWebContext()+"/services/folders/"+getComponentId()+"/"+node.id;
-        		$.getJSON(url, function(topic){
-        					var name = topic.text;
-        					var desc = topic.attr["description"];
-        					if (params["i18n"]) {
-        						storeTranslations(topic.translations);
-        					} else {
-                    setDataInFolderDialog(name, desc);
-        					}
-        					topicUpdate(topic.id);
-        				});
-            }
-        },
-        deleteItem: {
-            label: "<%=resources.getString("SupprimerSousTheme")%>",
-            action: function (obj) {
-              var node = getTreeview().get_node(obj.reference);
-            	deleteNode(node.id);
-            }
-        },
-        sortItem: {
-            label: "<%=resources.getString("kmelia.SortTopics")%>",
-            action: function (obj) {
-              var node = getTreeview().get_node(obj.reference);
-            	closeWindows();
-        		SP_openWindow("ToOrderTopics?Id="+node.id, "topicAddWindow", "600", "500", "directories=0,menubar=0,toolbar=0,scrollbars=1,alwaysRaised,resizable");
-            },
-        	"separator_after" : true
-        },
-        <% if (kmeliaScc.isPdcUsed()) { %>
-        pdcItem: {
-        	label: "<%=resources.getString("GML.PDCPredefinePositions")%>",
-            action: function (obj) {
-              var node = getTreeview().get_node(obj.reference);
-            	openPredefinedPdCClassification(node.id);
-            },
-        	"separator_after" : true
-        },
-        <% } %>
-        copyItem: {
-            label: "<%=resources.getString("kmelia.operation.folder.copy")%>",
-            action: function (obj) {
-              var node = getTreeview().get_node(obj.reference);
-            	copyNode(node.id);
+      addItem: {
+        label: "<%=resources.getString("CreerSousTheme")%>",
+        action: function (obj) {
+          var node = getTreeview().get_node(obj.reference);
+          topicAdd(node.id, false);
+        }
+      },
+      editItem: {
+        label: "<%=resources.getString("ModifierSousTheme")%>",
+        action: function (obj) {
+          var node = getTreeview().get_node(obj.reference);
+          var url = getWebContext()+"/services/folders/"+getComponentId()+"/"+node.id;
+          $.getJSON(url, function(topic){
+            var name = topic.text;
+            var desc = topic.attr["description"];
+            if (params["i18n"]) {
+              storeTranslations(topic.translations);
+            } else {
+              setDataInFolderDialog(name, desc);
             }
+            topicUpdate(topic.id);
+          });
+        }
+      },
+      deleteItem: {
+        label: "<%=resources.getString("SupprimerSousTheme")%>",
+        action: function (obj) {
+          var node = getTreeview().get_node(obj.reference);
+          deleteNode(node.id);
+        }
+      },
+      sortItem: {
+        label: "<%=resources.getString("kmelia.SortTopics")%>",
+        action: function (obj) {
+          var node = getTreeview().get_node(obj.reference);
+          closeWindows();
+          SP_openWindow("ToOrderTopics?Id="+node.id, "topicAddWindow", "600", "500", "directories=0,menubar=0,toolbar=0,scrollbars=1,alwaysRaised,resizable");
         },
-        cutItem: {
-            label: "<%=resources.getString("kmelia.operation.folder.cut")%>",
-            action: function (obj) {
-              var node = getTreeview().get_node(obj.reference);
-            	cutNode(node.id);
-            }
+        "separator_after" : true
+      },
+      <% if (kmeliaScc.isPdcUsed()) { %>
+      pdcItem: {
+        label: "<%=resources.getString("GML.PDCPredefinePositions")%>",
+        action: function (obj) {
+          var node = getTreeview().get_node(obj.reference);
+          openPredefinedPdCClassification(node.id);
         },
-        pasteItem: {
-            label: "<%=resources.getString("GML.paste")%>",
-            action: function (obj) {
-              var node = getTreeview().get_node(obj.reference);
-            	pasteNode(node.id);
-            },
-        	"separator_after" : true
+        "separator_after" : true
+      },
+      <% } %>
+      copyItem: {
+        label: "<%=resources.getString("kmelia.operation.folder.copy")%>",
+        action: function (obj) {
+          var node = getTreeview().get_node(obj.reference);
+          copyNode(node.id);
         }
-        <% if (kmeliaScc.isOrientedWebContent() || kmeliaScc.isWysiwygOnTopicsEnabled()) { %>
-        ,
-        wysiwygItem: {
-            label: "<%=resources.getString("TopicWysiwyg")%>",
-            action: function (obj) {
-              var node = getTreeview().get_node(obj.reference);
-            	updateTopicWysiwyg(node.id);
-            }
+      },
+      cutItem: {
+        label: "<%=resources.getString("kmelia.operation.folder.cut")%>",
+        action: function (obj) {
+          var node = getTreeview().get_node(obj.reference);
+          cutNode(node.id);
         }
-        <% } %>
-        <% if (kmeliaScc.isOrientedWebContent()) { %>
-        ,
-        statusItem: {
-            label: "<%=resources.getString("TopicVisible2Invisible")%>",
-            action: function (obj) {
-              var node = getTreeview().get_node(obj.reference);
-            	changeStatus(node.id, node.original.attr["status"]);
-            }
+      },
+      pasteItem: {
+        label: "<%=resources.getString("GML.paste")%>",
+        action: function (obj) {
+          var node = getTreeview().get_node(obj.reference);
+          pasteNode(node.id);
+        },
+        "separator_after" : true
+      }
+      <% if (kmeliaScc.isOrientedWebContent() || kmeliaScc.isWysiwygOnTopicsEnabled()) { %>
+      ,
+      wysiwygItem: {
+        label: "<%=resources.getString("TopicWysiwyg")%>",
+        action: function (obj) {
+          var node = getTreeview().get_node(obj.reference);
+          updateTopicWysiwyg(node.id);
+        }
+      }
+      <% } %>
+      <% if (kmeliaScc.isOrientedWebContent()) { %>
+      ,
+      statusItem: {
+        label: "<%=resources.getString("TopicVisible2Invisible")%>",
+        action: function (obj) {
+          var node = getTreeview().get_node(obj.reference);
+          changeStatus(node.id, node.original.attr["status"]);
         }
-    	<% } %>
+      }
+      <% } %>
     };
 
     if (nodeType == "root") {
-    	<% if(!userCanManageRoot) { %>
-    		// user can not manage root folder
-    		return false;
-    	<% } %>
-    	delete items.editItem;
-        delete items.deleteItem;
-        delete items.copyItem;
-        delete items.cutItem;
-        delete items.statusItem;
+      <% if(!userCanManageRoot) { %>
+      // user can not manage root folder
+      return false;
+      <% } %>
+      delete items.editItem;
+      delete items.deleteItem;
+      delete items.copyItem;
+      delete items.cutItem;
+      delete items.statusItem;
     }
 
     if (items.statusItem) {
-    	if (node.original.attr["status"] == "Invisible") {
-    		items.statusItem.label = "<%=resources.getString("TopicInvisible2Visible")%>";
-    	}
+      if (node.original.attr["status"] == "Invisible") {
+        items.statusItem.label = "<%=resources.getString("TopicInvisible2Visible")%>";
+      }
     }
 
     if (userRole == "admin") {
-    	// all actions are allowed
+      // all actions are allowed
     } else if (kmeliaWebService.getUserProfileSynchronously("0") == "admin") {
       // a minimal contextual menu is always available for app admins
       getMinimalContextualMenuForAdmins(items);
     } else if (userRole == "user") {
-		  var parentProfile =  getTreeview()._get_parent(node).attr("role");
-		  if (parentProfile != "admin") {
-			  //do not show the menu
-			  return;
-		  } else {
+      var parentProfile =  getTreeview()._get_parent(node).attr("role");
+      if (parentProfile != "admin") {
+        //do not show the menu
+        return;
+      } else {
         // a minimal contextual menu is always available for folder admins
         getMinimalContextualMenuForAdmins(items);
-		  }
-	  } else {
+      }
+    } else {
       var isTopicManagementDelegated = <%=kmeliaScc.isTopicManagementDelegated()%>;
       var userId = "<%=kmeliaScc.getUserId()%>";
       var creatorId = node.original.attr["creatorId"];
@@ -627,425 +628,421 @@ function customMenu(node) {
           return;
         }
       }
-	  }
+    }
     return items;
-}
+  }
+
+  function getMinimalContextualMenuForAdmins(items) {
+    items.addItem._disabled = true;
+    items.sortItem._disabled = true;
+    if (items.pdcItem) {
+      items.pdcItem._disabled = true;
+    }
+    items.copyItem._disabled = true;
+    items.cutItem._disabled = true;
+    items.pasteItem._disabled = true;
+    if (items.wysiwygItem) {
+      items.wysiwygItem._disabled = true;
+    }
+    if (items.statusItem) {
+      items.statusItem._disabled = true;
+    }
+  }
 
-function getMinimalContextualMenuForAdmins(items) {
-  items.addItem._disabled = true;
-  items.sortItem._disabled = true;
-  if (items.pdcItem) {
-    items.pdcItem._disabled = true;
+  function decorateNodeName(node) {
+    <%-- This data is filled only if the application parameter 'displayNB' is activated --%>
+    var nbPublicationsTheNodeContains = node.attr['nbItems'];
+    if (nbPublicationsTheNodeContains) {
+      node.text = node.text + " (" + nbPublicationsTheNodeContains + ")";
+    }
   }
-  items.copyItem._disabled = true;
-  items.cutItem._disabled = true;
-  items.pasteItem._disabled = true;
-  if (items.wysiwygItem) {
-    items.wysiwygItem._disabled = true;
+
+  function spreadNbItems(children) {
+    if (children) {
+      for(var i = 0; i < children.length; i++) {
+        var child = children[i];
+        child.a_attr = { title: child.attr['description'].unescapeHTML()};
+        <% if (kmeliaScc.isOrientedWebContent()) { %>
+        child.li_attr = { class: child.attr['status'] };
+        <% } %>
+        decorateNodeName(child);
+        if (child.children && child.children.length > 0) {
+          spreadNbItems(child.children);
+        } else {
+          child.children = true;
+        }
+      }
+    }
   }
-  if (items.statusItem) {
-    items.statusItem._disabled = true;
+
+  function publicationMovedInError(id, data) {
+    var pubName = getPublicationName(id);
+    notyError("<%=resources.getString("kmelia.drag.publication.error1")%>" + pubName + "<%=resources.getString("kmelia.drag.publication.error2")%>" + "<br/><br/>" + data);
   }
-}
 
-function decorateNodeName(node) {
-  <%-- This data is filled only if the application parameter 'displayNB' is activated --%>
-  var nbPublicationsTheNodeContains = node.attr['nbItems'];
-  if (nbPublicationsTheNodeContains) {
-    node.text = node.text + " (" + nbPublicationsTheNodeContains + ")";
+  function getPublicationName(id) {
+    return $("#pubList #pub-"+id).html();
   }
-}
-
-function spreadNbItems(children) {
-	if (children) {
-		for(var i = 0; i < children.length; i++) {
-			var child = children[i];
-			child.a_attr = { title: child.attr['description'].unescapeHTML()};
-			<% if (kmeliaScc.isOrientedWebContent()) { %>
-      child.li_attr = { class: child.attr['status'] };
-			<% } %>
-      decorateNodeName(child);
-      if (child.children && child.children.length > 0) {
-        spreadNbItems(child.children);
-      } else {
-        child.children = true;
+
+  function extractPublicationId(id) {
+    return id.substring(4, id.length);
+  }
+
+  function extractFolderId(id) {
+    if (id) {
+      var idx = id.indexOf('_');
+      if (idx > 0) {
+        id = id.substr(0, idx);
       }
     }
+    return id;
   }
-}
-
-function publicationMovedInError(id, data) {
-	var pubName = getPublicationName(id);
-  notyError("<%=resources.getString("kmelia.drag.publication.error1")%>" + pubName + "<%=resources.getString("kmelia.drag.publication.error2")%>" + "<br/><br/>" + data);
-}
-
-function getPublicationName(id) {
-	return $("#pubList #pub-"+id).html();
-}
-
-function extractPublicationId(id) {
-	return id.substring(4, id.length);
-}
-
-function extractFolderId(id) {
-  if (id) {
-    var idx = id.indexOf('_');
-    if (idx > 0) {
-      id = id.substr(0, idx);
+
+  function publicationMovedSuccessfully(id, targetId) {
+    var pubName = getPublicationName(id);
+    notySuccess("<%=resources.getString("kmelia.drag.publication.success1")%>" + pubName + "<%=resources.getString("kmelia.drag.publication.success2")%>");
+
+    if (params["nbPublisDisplayed"]) {
+      // add one publi to target node and its parents
+      var path = getTreeview().get_path("#"+targetId, false, true);
+      for (i=0; i<path.length; i++) {
+        var elementId = path[i];
+        if (elementId != "0") {
+          addNbPublis(elementId, 1);
+        }
+      }
+
+      // remove one publi to current node and its parents
+      var path = getTreeview().get_path("#"+getCurrentNodeId(), false, true);
+      for (i=0; i<path.length; i++) {
+        var elementId = path[i];
+        if (elementId != "0") {
+          addNbPublis(elementId, -1);
+        }
+      }
     }
+
+    try {
+      // remove one publi to publications header
+      var previousNb = $("#pubsHeader #pubsCounter span").html();
+      if (previousNb == 1) {
+        $("#pubsHeader #pubsCounter").html("<%=resources.getString("GML.publications")%>");
+        $("#pubsHeader #pubsSort").hide();
+        $("#pubList ul").html("<%=resources.getString("PubAucune")%>")
+      } else {
+        $("#pubsHeader #pubsCounter span").html(eval(previousNb-1));
+      }
+    } catch (e) {
+
+    }
+
+    // remove publication from publications list
+    $("#pubList #pub-"+id).closest("li").fadeOut('500', function() {
+      $(this).remove();
+    });
   }
-  return id;
-}
-
-function publicationMovedSuccessfully(id, targetId) {
-	var pubName = getPublicationName(id);
-  notySuccess("<%=resources.getString("kmelia.drag.publication.success1")%>" + pubName + "<%=resources.getString("kmelia.drag.publication.success2")%>");
-
-	if (params["nbPublisDisplayed"]) {
-		// add one publi to target node and its parents
-		var path = getTreeview().get_path("#"+targetId, false, true);
-		for (i=0; i<path.length; i++) {
-			var elementId = path[i];
-			if (elementId != "0") {
-				addNbPublis(elementId, 1);
-			}
-		}
-
-		// remove one publi to current node and its parents
-		var path = getTreeview().get_path("#"+getCurrentNodeId(), false, true);
-		for (i=0; i<path.length; i++) {
-			var elementId = path[i];
-			if (elementId != "0") {
-				addNbPublis(elementId, -1);
-			}
-		}
-	}
-
-	try {
-		// remove one publi to publications header
-		var previousNb = $("#pubsHeader #pubsCounter span").html();
-		if (previousNb == 1) {
-			$("#pubsHeader #pubsCounter").html("<%=resources.getString("GML.publications")%>");
-			$("#pubsHeader #pubsSort").hide();
-			$("#pubList ul").html("<%=resources.getString("PubAucune")%>")
-		} else {
-			$("#pubsHeader #pubsCounter span").html(eval(previousNb-1));
-		}
-	} catch (e) {
-
-	}
-
-	// remove publication from publications list
-	$("#pubList #pub-"+id).closest("li").fadeOut('500', function() {
-		$(this).remove();
-	});
-}
-
-function publicationsRemovedSuccessfully(nb) {
-	if (params["nbPublisDisplayed"]) {
-		if (getCurrentNodeId() == "1") {
-			// publications are definitively removed
-			// remove nb publis from trash and root folders
-			addNbPublis("1", 0-eval(nb));
-			addNbPublis("0", 0-eval(nb));
-		} else {
-			// publications goes to trash
-			// remove nb publi to current node and its parents except root
-			var path = getTreeview().get_path("#"+getCurrentNodeId(), false, true);
-			for (i=0; i<path.length; i++) {
-				var elementId = path[i];
-				if (elementId != "0") {
-					addNbPublis(elementId, 0-eval(nb));
-				}
-			}
-
-			// add nb publi to trash
-			addNbPublis("1", eval(nb));
-		}
-	}
-}
-
-function getString(key) {
-	return sp.i18n.get(key);
-}
-
-$(document).ready(function() {
-  //build the tree
-  $("#treeDiv1").jstree({
-    "core" : {
-      force_text : false,
-      "data" : {
-        "url" : function (node) {
-          var url = getWebContext() + "/services/folders/" + getComponentId() + "/" +
-              getCurrentFolderId() + "/treeview?lang=" + getTranslation() + "&IEFix=" +
-              new Date().getTime();
-          if (node && node.id !== '#') {
-            url = getWebContext() + "/services/folders/" + getComponentId() + "/" + node.id +
-                "/children?lang=" + getTranslation() + "&IEFix=" + new Date().getTime();
-          }
-          return url;
-        },
-        "success" : function(node) {
-          if (node) {
-            if (node.length) {
-              // this is subfolders
-              spreadNbItems(node);
-            } else {
-              if (node.text) {
-                // this is the root
-                node.text = "<%=WebEncodeHelper.javaStringToHtmlString(componentLabel)%>";
-                decorateNodeName(node);
-                <% if (kmeliaScc.isOrientedWebContent()) { %>
-                node.li_attr = {class: node.attr['status']};
-                <% } %>
-                spreadNbItems(node.children);
-              }
-            }
+
+  function publicationsRemovedSuccessfully(nb) {
+    if (params["nbPublisDisplayed"]) {
+      if (getCurrentNodeId() == "1") {
+        // publications are definitively removed
+        // remove nb publis from trash and root folders
+        addNbPublis("1", 0-eval(nb));
+        addNbPublis("0", 0-eval(nb));
+      } else {
+        // publications goes to trash
+        // remove nb publi to current node and its parents except root
+        var path = getTreeview().get_path("#"+getCurrentNodeId(), false, true);
+        for (i=0; i<path.length; i++) {
+          var elementId = path[i];
+          if (elementId != "0") {
+            addNbPublis(elementId, 0-eval(nb));
           }
-          return node;
         }
-      },
-      "check_callback" : true,
-      "themes" : {
-        "dots" : false,
-        "icons" : true
-      },
-      "multiple" : false
-    },
-    // Using types - most of the time this is an overkill
-    // read the docs carefully to decide whether you need types
-    "types" : {
-      "#" : {
-        // I set both options to -2, as I do not need depth and children count checking
-        // Those two checks may slow jstree a lot, so use only when needed
-        "max_depth" : -2, // I want only `drive` nodes to be root nodes
-        "max_children" : -2, // This will prevent moving or creating any other type as a root node
-        "valid_children" : ["root"],
-      },
-      // The `root` node
-      "root" : {
-        // those prevent the functions with the same name to be used on `root` nodes
-        "valid_children" : ["bin", getToValidateFolderId(), getNonVisiblePubsFolderId()]
-      },
-      // The `bin` node
-      "bin" : {
-        // can have files and folders inside, but NOT other `drive` nodes
-        "valid_children" : -1,
-        "icon" : getWebContext() + "/util/icons/treeview/basket.jpg"
-      },
-      // The `to validate` node
-      "<%=KmeliaHelper.SPECIALFOLDER_TOVALIDATE%>" : {
-        // can have files only
-        "valid_children" : -1,
-        "icon" : getWebContext() + "/util/icons/ok_alpha.gif"
-      },
-      // The 'non visible publications' node
-      "<%=KmeliaHelper.SPECIALFOLDER_NONVISIBLEPUBS%>" : {
-        // can have files only
-        "valid_children" : -1,
-        "icon" : getWebContext() + "/util/icons/masque.gif"
-      },
-      "folder" : {
-        // those prevent the functions with the same name to be used on `root` nodes
-        "valid_children" : ["folder"]
-      },
-      "<%=NodeType.FOLDER_WITH_RIGHTS%>" : {
-        // those prevent the functions with the same name to be used on `root` nodes
-        "icon" : getWebContext() + "/util/icons/treeview/folder-bicolor.png",
-        "valid_children" : ["folder","<%=NodeType.FOLDER_WITH_RIGHTS%>"]
+
+        // add nb publi to trash
+        addNbPublis("1", eval(nb));
       }
-    },
-    "contextmenu" : {
-      "show_at_node" : false,
-      "items" : customMenu
-    },
-    "dnd" : {
-      "is_draggable" : false
-      //"check_while_dragging": true,
-      //"use_html5" : false
-    },
-    // the `plugins` array allows you to configure the active plugins on this instance
-    "plugins" : ["types", "contextmenu", "dnd"]
-  }).on("loaded.jstree", function(event, data) {
-    sp.log.debug('jstree loaded');
-  }).on("ready.jstree", function(event, data) {
-    var node = data.instance.get_node('#' + getCurrentFolderId());
-    if (node) {
-      data.instance.select_node(node);
-    } else {
-      $('#pubList').html('<div class=\"inlineMessage-nok\">${silfn:escapeJs(labelForbiddenAccess)}</div>');
-      $("#searchZone").css({'display':'none'}); //hide search
     }
-  }).on("select_node.jstree", function(e, data) {
-    // data.inst is the instance which triggered this event
-    var nodeId = data.node.id;
+  }
 
-    // open topic in treeview
-    if (nodeId >= 0) {
-      data.instance.open_node(data.node);
-    }
+  function getString(key) {
+    return sp.i18n.get(key);
+  }
+
+  $(document).ready(function() {
+        //build the tree
+        $("#treeDiv1").jstree({
+          "core" : {
+            force_text : false,
+            "data" : {
+              "url" : function (node) {
+                var url = getWebContext() + "/services/folders/" + getComponentId() + "/" +
+                    getCurrentFolderId() + "/treeview?lang=" + getTranslation() + "&IEFix=" +
+                    new Date().getTime();
+                if (node && node.id !== '#') {
+                  url = getWebContext() + "/services/folders/" + getComponentId() + "/" + node.id +
+                      "/children?lang=" + getTranslation() + "&IEFix=" + new Date().getTime();
+                }
+                return url;
+              },
+              "success" : function(node) {
+                if (node) {
+                  if (node.length) {
+                    // this is subfolders
+                    spreadNbItems(node);
+                  } else {
+                    if (node.text) {
+                      // this is the root
+                      node.text = "<%=WebEncodeHelper.javaStringToHtmlString(componentLabel)%>";
+                      decorateNodeName(node);
+                      <% if (kmeliaScc.isOrientedWebContent()) { %>
+                      node.li_attr = {class: node.attr['status']};
+                      <% } %>
+                      spreadNbItems(node.children);
+                    }
+                  }
+                }
+                return node;
+              }
+            },
+            "check_callback" : true,
+            "themes" : {
+              "dots" : false,
+              "icons" : true
+            },
+            "multiple" : false
+          },
+          // Using types - most of the time this is an overkill
+          // read the docs carefully to decide whether you need types
+          "types" : {
+            "#" : {
+              // I set both options to -2, as I do not need depth and children count checking
+              // Those two checks may slow jstree a lot, so use only when needed
+              "max_depth" : -2, // I want only `drive` nodes to be root nodes
+              "max_children" : -2, // This will prevent moving or creating any other type as a root node
+              "valid_children" : ["root"],
+            },
+            // The `root` node
+            "root" : {
+              // those prevent the functions with the same name to be used on `root` nodes
+              "valid_children" : ["bin", getToValidateFolderId(), getNonVisiblePubsFolderId()]
+            },
+            // The `bin` node
+            "bin" : {
+              // can have files and folders inside, but NOT other `drive` nodes
+              "valid_children" : -1,
+              "icon" : getWebContext() + "/util/icons/treeview/basket.jpg"
+            },
+            // The `to validate` node
+            "<%=KmeliaHelper.SPECIALFOLDER_TOVALIDATE%>" : {
+              // can have files only
+              "valid_children" : -1,
+              "icon" : getWebContext() + "/util/icons/ok_alpha.gif"
+            },
+            // The 'non visible publications' node
+            "<%=KmeliaHelper.SPECIALFOLDER_NONVISIBLEPUBS%>" : {
+              // can have files only
+              "valid_children" : -1,
+              "icon" : getWebContext() + "/util/icons/masque.gif"
+            },
+            "folder" : {
+              // those prevent the functions with the same name to be used on `root` nodes
+              "valid_children" : ["folder"]
+            },
+            "<%=NodeType.FOLDER_WITH_RIGHTS%>" : {
+              // those prevent the functions with the same name to be used on `root` nodes
+              "icon" : getWebContext() + "/util/icons/treeview/folder-bicolor.png",
+              "valid_children" : ["folder","<%=NodeType.FOLDER_WITH_RIGHTS%>"]
+            }
+          },
+          "contextmenu" : {
+            "show_at_node" : false,
+            "items" : customMenu
+          },
+          "dnd" : {
+            "is_draggable" : false
+            //"check_while_dragging": true,
+            //"use_html5" : false
+          },
+          // the `plugins` array allows you to configure the active plugins on this instance
+          "plugins" : ["types", "contextmenu", "dnd"]
+        }).on("loaded.jstree", function(event, data) {
+          sp.log.debug('jstree loaded');
+        }).on("ready.jstree", function(event, data) {
+          var node = data.instance.get_node('#' + getCurrentFolderId());
+          if (node) {
+            data.instance.select_node(node);
+          } else {
+            $('#pubList').html('<div class=\"inlineMessage-nok\">${silfn:escapeJs(labelForbiddenAccess)}</div>');
+            $("#searchZone").css({'display':'none'}); //hide search
+          }
+        }).on("select_node.jstree", function(e, data) {
+          // data.inst is the instance which triggered this event
+          var nodeId = data.node.id;
 
-    // display topic content in right panel
-    displayTopicContent(nodeId);
-  }).on("move_node.jstree", function(e, data) {
-    var pubId = extractPublicationId(data.node.id);
-    var targetId = data.parent;
+          // open topic in treeview
+          if (nodeId >= 0) {
+            data.instance.open_node(data.node);
+          }
 
-    // store new parent of publication
-    movePublication(pubId, getCurrentNodeId(), targetId);
-  });
+          // display topic content in right panel
+          displayTopicContent(nodeId);
+        }).on("move_node.jstree", function(e, data) {
+          var pubId = extractPublicationId(data.node.id);
+          var targetId = data.parent;
 
-    // init splitter
-    $(".resizable1").resizable({
-      autoHide: true,
-      handles: 'e',
-      maxWidth: 500,
-      resize: function (e, ui) {
-        var parent = ui.element.parent();
-        var remainingSpace = parent.width() - ui.element.outerWidth();
-        var divTwo = ui.element.next();
-        var divTwoWidth = (remainingSpace - (divTwo.outerWidth() - divTwo.width())) / parent.width() * 100 + "%";
-        divTwo.width(divTwoWidth);
-      },
-      stop: function (e, ui) {
-        var parent = ui.element.parent();
-        ui.element.css({
-          width: ui.element.width() / parent.width() * 100 + "%"
+          // store new parent of publication
+          movePublication(pubId, getCurrentNodeId(), targetId);
         });
-      }
-    });
 
-    sp.i18n.load({
-      bundle : 'org.silverpeas.kmelia.multilang.kmeliaBundle',
-      language : '<%=language%>'
-    });
+        // init splitter
+        $(".resizable1").resizable({
+          autoHide: true,
+          handles: 'e',
+          maxWidth: 500,
+          resize: function (e, ui) {
+            var parent = ui.element.parent();
+            var remainingSpace = parent.width() - ui.element.outerWidth();
+            var divTwo = ui.element.next();
+            var divTwoWidth = (remainingSpace - (divTwo.outerWidth() - divTwo.width())) / parent.width() * 100 + "%";
+            divTwo.width(divTwoWidth);
+          },
+          stop: function (e, ui) {
+            var parent = ui.element.parent();
+            ui.element.css({
+              width: ui.element.width() / parent.width() * 100 + "%"
+            });
+          }
+        });
 
-	<% if (displaySearch.booleanValue()) { %>
-		document.getElementById("topicQuery").focus();
-	<% } %>
+        sp.i18n.load({
+          bundle : 'org.silverpeas.kmelia.multilang.kmeliaBundle',
+          language : '<%=language%>'
+        });
 
-	<% if (KmeliaHelper.ROLE_ADMIN.equals(profile)) { %>
-		//Right-click concerns only admins
-		showRightClickHelp();
-	<% } %>
-  }
-);
-
-// starts the dragging when a publication is holden to be dragged off
-$(document).on('mousedown', '.jstree-draggable', function(e) {
-  return $.vakata.dnd.start(e,
-      {
-        'jstree' : true, 'obj' : $(this),
-        'nodes' : [{id : $(this).attr('id'), text : $(this).text()}]
-      },
-      '<div id="jstree-dnd" class="jstree-default"><i class="jstree-icon jstree-er"></i>' +
+        <% if (KmeliaHelper.ROLE_ADMIN.equals(profile)) { %>
+        //Right-click concerns only admins
+        showRightClickHelp();
+        <% } %>
+      }
+  );
+
+  // starts the dragging when a publication is holden to be dragged off
+  $(document).on('mousedown', '.jstree-draggable', function(e) {
+    return $.vakata.dnd.start(e,
+        {
+          'jstree' : true, 'obj' : $(this),
+          'nodes' : [{id : $(this).attr('id'), text : $(this).text()}]
+        },
+        '<div id="jstree-dnd" class="jstree-default"><i class="jstree-icon jstree-er"></i>' +
         $(this).text() + '</div>');
-});
-
-window.__spTreeviewDndContext = {
-  lastTarget : {
-    id : undefined,
-    canDrop : undefined
-  }
-};
+  });
 
-$(document).on("dnd_stop.vakata", function(event, data) {
-  window.__spTreeviewDndContext.lastTarget = {};
-  var treeview = getTreeview();
-  if (!treeview.settings.dnd.check_while_dragging) {
+  window.__spTreeviewDndContext = {
+    lastTarget : {
+      id : undefined,
+      canDrop : undefined
+    }
+  };
+
+  $(document).on("dnd_stop.vakata", function(event, data) {
+    window.__spTreeviewDndContext.lastTarget = {};
+    var treeview = getTreeview();
+    if (!treeview.settings.dnd.check_while_dragging) {
+      var target = $(data.event.target);
+      var targetId = extractFolderId(target.attr('id'));
+      var pubId = extractPublicationId(data.data.nodes[0].id);
+      // store new parent of publication
+      movePublication(pubId, getCurrentNodeId(), targetId);
+    }
+  }).on("dnd_move.vakata", function(event, data) {
     var target = $(data.event.target);
-    var targetId = extractFolderId(target.attr('id'));
-    var pubId = extractPublicationId(data.data.nodes[0].id);
-    // store new parent of publication
-    movePublication(pubId, getCurrentNodeId(), targetId);
-  }
-}).on("dnd_move.vakata", function(event, data) {
-  var target = $(data.event.target);
-  var canBeDropped = false;
-  var treeview = getTreeview();
-  if (target.closest('#treeDiv1').length && target.hasClass('jstree-anchor')) {
-    var targetId = extractFolderId(target.attr('id'));
-    if (targetId && targetId !== window.__spTreeviewDndContext.lastTarget.id) {
-      target = treeview.get_node('#' + targetId);
-      if (isSpecialFolder(targetId) || targetId === getCurrentNodeId()) {
-        canBeDropped = false;
-      } else if (target.type !== 'root' || arePublicationsOnRootAllowed()) {
-        var pubId = extractPublicationId(data.data.nodes[0].id);
-        var sourceFolderAuthorizations = kmeliaWebService.getPublicationUserAuthorizationsSynchronously(pubId);
-        if (targetId === '1') {
-          canBeDropped = sourceFolderAuthorizations.canBeDeleted;
-        } else {
-          var targetFolderAuthorizations = kmeliaWebService.getPublicationUserAuthorizationsSynchronously(pubId, targetId);
-          canBeDropped = sourceFolderAuthorizations.canBeCut && targetFolderAuthorizations.canBeCut;
+    var canBeDropped = false;
+    var treeview = getTreeview();
+    if (target.closest('#treeDiv1').length && target.hasClass('jstree-anchor')) {
+      var targetId = extractFolderId(target.attr('id'));
+      if (targetId && targetId !== window.__spTreeviewDndContext.lastTarget.id) {
+        target = treeview.get_node('#' + targetId);
+        if (isSpecialFolder(targetId) || targetId === getCurrentNodeId()) {
+          canBeDropped = false;
+        } else if (target.type !== 'root' || arePublicationsOnRootAllowed()) {
+          var pubId = extractPublicationId(data.data.nodes[0].id);
+          var sourceFolderAuthorizations = kmeliaWebService.getPublicationUserAuthorizationsSynchronously(pubId);
+          if (targetId === '1') {
+            canBeDropped = sourceFolderAuthorizations.canBeDeleted;
+          } else {
+            var targetFolderAuthorizations = kmeliaWebService.getPublicationUserAuthorizationsSynchronously(pubId, targetId);
+            canBeDropped = sourceFolderAuthorizations.canBeCut && targetFolderAuthorizations.canBeCut;
+          }
         }
+        window.__spTreeviewDndContext.lastTarget = {
+          id : targetId,
+          canDrop : canBeDropped
+        };
+      } else if (targetId) {
+        canBeDropped = window.__spTreeviewDndContext.lastTarget.canDrop;
       }
-      window.__spTreeviewDndContext.lastTarget = {
-        id : targetId,
-        canDrop : canBeDropped
-      };
-    } else if (targetId) {
-      canBeDropped = window.__spTreeviewDndContext.lastTarget.canDrop;
     }
-  }
-  treeview.settings.dnd.check_while_dragging = !canBeDropped;
-});
-</script>
-</div>
-<div id="visibleInvisible-message" style="display: none;">
-	<p>
-	</p>
-</div>
-<div id="rightClick-message" title="<%=resources.getString("kmelia.help.rightclick.title") %>" style="display: none;">
-	<p>
-    <%=resources.getStringWithParams("kmelia.help.rightclick.content", WebEncodeHelper.javaStringToHtmlString(componentLabel)) %>
-	</p>
-</div>
-<div id="addOrUpdateNode" style="display: none;">
-	<form name="topicForm" action="AddTopic" method="post">
-    <input type="hidden" id="<%=I18NHelper.HTMLHiddenRemovedTranslationMode %>" name="<%=I18NHelper.HTMLHiddenRemovedTranslationMode %>" value="false"/>
-            <table cellpadding="5" width="100%">
-              <tr><td class="txtlibform"><fmt:message key="TopicPath"/> :</td>
-                <td valign="top" id="path"></td>
-              </tr>
-              <%=I18NHelper.getFormLine(resources, null, kmeliaScc.getLanguage())%>
-              <tr>
-                <td class="txtlibform"><fmt:message key="TopicTitle"/> :</td>
-                <td><input type="text" name="Name" id="folderName" size="60" maxlength="60"/>
-                <input type="hidden" name="ParentId" id="parentId"/>
-                <input type="hidden" name="ChildId" id="topicId"/>&nbsp;<img border="0" src="<c:out value="${mandatoryFieldUrl}" />" width="5" height="5" alt=""/></td>
-              </tr>
-
-              <tr>
-                <td class="txtlibform"><fmt:message key="TopicDescription" /> :</td>
-                <td><input type="text" name="Description" id="folderDescription" size="60" maxlength="200"/></td>
-              </tr>
-
-              <% if (kmeliaScc.isNotificationAllowed()) { %>
-                <tr>
-                  <td class="txtlibform" valign="top"><fmt:message key="TopicAlert" /> :</td>
-                  <td valign="top">
-                    <select name="AlertType">
-                      <option value="NoAlert" selected="selected"><fmt:message key="NoAlert" /></option>
-                      <option value="Publisher"><fmt:message key="OnlyPubsAlert" /></option>
-                      <option value="All"><fmt:message key="AllUsersAlert" /></option>
-                    </select>
-                  </td>
-                </tr>
-              <% } %>
-              <tr>
-                <td colspan="2">( <img border="0" alt="mandatory" src="<c:out value="${mandatoryFieldUrl}" />" width="5" height="5"/> : <fmt:message key="GML.requiredField"/> )</td>
-              </tr>
-            </table>
-          </form>
-</div>
-
-<%@ include file="../../sharing/jsp/createTicketPopin.jsp" %>
-<view:progressMessage/>
-<kmelia:paste highestUserRole="${highestUserRole}" componentInstanceId="<%=componentId%>" />
-<kmelia:dragAndDrop highestUserRole="${highestUserRole}" componentInstanceId="<%=componentId%>" contentLanguage="<%=translation%>" />
-<script type="text/javascript">
-/* declare the module myapp and its dependencies (here in the silverpeas module) */
-var myapp = angular.module('silverpeas.kmelia', ['silverpeas.services', 'silverpeas.directives']);
-</script>
-</body>
-</html>
+    treeview.settings.dnd.check_while_dragging = !canBeDropped;
+  });
+  </script>
+  </div>
+  <div id="visibleInvisible-message" style="display: none;">
+    <p>
+    </p>
+  </div>
+  <div id="rightClick-message" title="<%=resources.getString("kmelia.help.rightclick.title") %>" style="display: none;">
+    <p>
+      <%=resources.getStringWithParams("kmelia.help.rightclick.content", WebEncodeHelper.javaStringToHtmlString(componentLabel)) %>
+    </p>
+  </div>
+  <div id="addOrUpdateNode" style="display: none;">
+    <form name="topicForm" action="AddTopic" method="post">
+      <input type="hidden" id="<%=I18NHelper.HTMLHiddenRemovedTranslationMode %>" name="<%=I18NHelper.HTMLHiddenRemovedTranslationMode %>" value="false"/>
+      <table cellpadding="5" width="100%">
+        <tr><td class="txtlibform"><fmt:message key="TopicPath"/> :</td>
+          <td valign="top" id="path"></td>
+        </tr>
+        <%=I18NHelper.getFormLine(resources, null, kmeliaScc.getLanguage())%>
+        <tr>
+          <td class="txtlibform"><fmt:message key="TopicTitle"/> :</td>
+          <td><input type="text" name="Name" id="folderName" size="60" maxlength="60"/>
+            <input type="hidden" name="ParentId" id="parentId"/>
+            <input type="hidden" name="ChildId" id="topicId"/>&nbsp;<img border="0" src="<c:out value="${mandatoryFieldUrl}" />" width="5" height="5" alt=""/></td>
+        </tr>
+
+        <tr>
+          <td class="txtlibform"><fmt:message key="TopicDescription" /> :</td>
+          <td><input type="text" name="Description" id="folderDescription" size="60" maxlength="200"/></td>
+        </tr>
+
+        <% if (kmeliaScc.isNotificationAllowed()) { %>
+        <tr>
+          <td class="txtlibform" valign="top"><fmt:message key="TopicAlert" /> :</td>
+          <td valign="top">
+            <select name="AlertType">
+              <option value="NoAlert" selected="selected"><fmt:message key="NoAlert" /></option>
+              <option value="Publisher"><fmt:message key="OnlyPubsAlert" /></option>
+              <option value="All"><fmt:message key="AllUsersAlert" /></option>
+            </select>
+          </td>
+        </tr>
+        <% } %>
+        <tr>
+          <td colspan="2">( <img border="0" alt="mandatory" src="<c:out value="${mandatoryFieldUrl}" />" width="5" height="5"/> : <fmt:message key="GML.requiredField"/> )</td>
+        </tr>
+      </table>
+    </form>
+  </div>
+
+  <%@ include file="../../sharing/jsp/createTicketPopin.jsp" %>
+  <view:progressMessage/>
+  <kmelia:paste highestUserRole="${highestUserRole}" componentInstanceId="<%=componentId%>" />
+  <kmelia:dragAndDrop highestUserRole="${highestUserRole}" componentInstanceId="<%=componentId%>" contentLanguage="<%=translation%>" />
+  <script type="text/javascript">
+    /* declare the module myapp and its dependencies (here in the silverpeas module) */
+    var myapp = angular.module('silverpeas.kmelia', ['silverpeas.services', 'silverpeas.directives']);
+  </script>
+  </view:sp-body-part>
+</view:sp-page>
\ No newline at end of file
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/treeview4PublicationPaths.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/treeview4PublicationPaths.jsp
index f62ad33f07..67c8e7a122 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/treeview4PublicationPaths.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/treeview4PublicationPaths.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/updatePublicationsContent.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/updatePublicationsContent.jsp
index 7a45bcab0e..8e2061bf3f 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/updatePublicationsContent.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/updatePublicationsContent.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/updateTopicNew.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/updateTopicNew.jsp
index 1a3d949e82..4a4f44007a 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/updateTopicNew.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/updateTopicNew.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.i18n.I18NHelper"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/validateImportedFilesClassification.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/validateImportedFilesClassification.jsp
index 8ebfc1df3f..ec7a413aad 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/validateImportedFilesClassification.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/validateImportedFilesClassification.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/validationSteps.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/validationSteps.jsp
index fc990607f6..e812a0cd4a 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/validationSteps.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/validationSteps.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/xmlForm.jsp b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/xmlForm.jsp
index 78150fcfaa..9714dc3e1e 100644
--- a/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/xmlForm.jsp
+++ b/kmelia/kmelia-war/src/main/webapp/kmelia/jsp/xmlForm.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
@@ -46,6 +46,10 @@
 
       PagesContext context = new PagesContext("myForm", "2", resources.getLanguage(), false, componentId, kmeliaScc.getUserId());
       context.setObjectId(pubId);
+      if (data != null) {
+        context.setCreation(data.isNew());
+      }
+
       if (kmeliaMode) {
         context.setNodeId(kmeliaScc.getCurrentFolderId());
       }
diff --git a/kmelia/pom.xml b/kmelia/pom.xml
index abdb4351aa..cf6e7cdf71 100644
--- a/kmelia/pom.xml
+++ b/kmelia/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
   
   <groupId>org.silverpeas.components</groupId>
diff --git a/license.txt b/license.txt
index dba13ed2dd..efff44b44b 100644
--- a/license.txt
+++ b/license.txt
@@ -643,7 +643,7 @@ the "copyright" line and a pointer to where the full notice is found.
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 Also add information on how to contact you by electronic and paper mail.
 
@@ -658,4 +658,4 @@ specific requirements.
   You should also get your employer (if you work as a programmer) or school,
 if any, to sign a "copyright disclaimer" for the program, if necessary.
 For more information on this, and how to apply and follow the GNU AGPL, see
-<http://www.gnu.org/licenses/>.
+<https://www.gnu.org/licenses/>.
diff --git a/mailinglist/mailinglist-configuration/pom.xml b/mailinglist/mailinglist-configuration/pom.xml
index 42c3477546..a623b0bf22 100644
--- a/mailinglist/mailinglist-configuration/pom.xml
+++ b/mailinglist/mailinglist-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>mailinglist</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.mailinglist</groupId>
diff --git a/mailinglist/mailinglist-configuration/src/main/config/migrations/modules/mailinglist-migration.xml b/mailinglist/mailinglist-configuration/src/main/config/migrations/modules/mailinglist-migration.xml
index e19c639220..cad4b33a39 100644
--- a/mailinglist/mailinglist-configuration/src/main/config/migrations/modules/mailinglist-migration.xml
+++ b/mailinglist/mailinglist-configuration/src/main/config/migrations/modules/mailinglist-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify it under the terms of the
   ~ GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -10,14 +10,14 @@
   ~ redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
   ~ applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
   ~ text describing the FLOSS exception, and it is also available here:
-  ~ "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  ~ "https://www.silverpeas.org/legal/floss_exception.html"
   ~
   ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
   ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   ~ Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License along with this program.
-  ~ If not, see <http://www.gnu.org/licenses/>.
+  ~ If not, see <https://www.gnu.org/licenses/>.
   -->
 <migration module="mailingList"
            xmlns="http://silverpeas.org/xml/ns/migration"
diff --git a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle.properties b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle.properties
index 55c8f76252..617b063af9 100644
--- a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle.properties
+++ b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 mailinglist.notification.title=[{0}] : {1}
 mailinglist.notification.template.title=[$mailingListName$] : $title$
diff --git a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle_de.properties b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle_de.properties
index c4627586c6..2a75b3b73a 100644
--- a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle_de.properties
+++ b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 mailinglist.notification.title=[{0}] : {1}
diff --git a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle_en.properties b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle_en.properties
index da0c0fff66..11417e0588 100644
--- a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle_en.properties
+++ b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 mailinglist.notification.title=[{0}] : {1}
 mailinglist.notification.body=<html><head/><body><p>[{0}]</p><a href=\"{1}\">Click here</a></body></html>
diff --git a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle_fr.properties b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle_fr.properties
index 55c8f76252..617b063af9 100644
--- a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle_fr.properties
+++ b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/multilang/mailinglistBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 mailinglist.notification.title=[{0}] : {1}
 mailinglist.notification.template.title=[$mailingListName$] : $title$
diff --git a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/notification.properties b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/notification.properties
index 65411eb709..6715953b8e 100644
--- a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/notification.properties
+++ b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/notification.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 mailinglist.notification.title=[{0}] : {1}
 mailinglist.notification.body=<html><head/><body><p>[{0}]</p><a href\="{1}">Cliquez ici</a></body></html>
diff --git a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/settings/mailinglistIcons.properties b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/settings/mailinglistIcons.properties
index be6197661a..d723eaa02d 100644
--- a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/settings/mailinglistIcons.properties
+++ b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/settings/mailinglistIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 mailingList.icons.user.delete=/util/icons/infoLetter_delSubscriber.gif
 mailingList.icons.user.add=/util/icons/infoLetter_addSubscriber.gif
diff --git a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/settings/mailinglistSettings.properties b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/settings/mailinglistSettings.properties
index c2d43f7306..f325bef761 100644
--- a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/settings/mailinglistSettings.properties
+++ b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/mailinglist/settings/mailinglistSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 #Specify if the key ST_PASSWORD must be processed or not
 #possible values = true, false
diff --git a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/util/logging/mailinglistLogging.properties b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/util/logging/mailinglistLogging.properties
index f3448e7146..96d536dbd0 100644
--- a/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/util/logging/mailinglistLogging.properties
+++ b/mailinglist/mailinglist-configuration/src/main/config/properties/org/silverpeas/util/logging/mailinglistLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/mailinglist/mailinglist-configuration/src/main/config/xmlcomponents/mailinglist.xml b/mailinglist/mailinglist-configuration/src/main/config/xmlcomponents/mailinglist.xml
index 0588a561f3..fbea8c77e6 100644
--- a/mailinglist/mailinglist-configuration/src/main/config/xmlcomponents/mailinglist.xml
+++ b/mailinglist/mailinglist-configuration/src/main/config/xmlcomponents/mailinglist.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/mailinglist/mailinglist-library/pom.xml b/mailinglist/mailinglist-library/pom.xml
index 9ab63f4d5e..e8e5ce0f10 100644
--- a/mailinglist/mailinglist-library/pom.xml
+++ b/mailinglist/mailinglist-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>mailinglist</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.mailinglist</groupId>
diff --git a/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/MailingListWarBuilder.java b/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/MailingListWarBuilder.java
index e243d5ad71..e45e0465da 100644
--- a/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/MailingListWarBuilder.java
+++ b/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/MailingListWarBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist;
 
diff --git a/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/MailingListServiceIT.java b/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/MailingListServiceIT.java
index 9ab06501e1..a96a5b2249 100644
--- a/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/MailingListServiceIT.java
+++ b/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/MailingListServiceIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model;
 
diff --git a/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/MessageServiceIT.java b/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/MessageServiceIT.java
index 3089e4a2aa..b0336afcb7 100644
--- a/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/MessageServiceIT.java
+++ b/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/MessageServiceIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model;
 
diff --git a/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/dao/MailingListDaoIT.java b/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/dao/MailingListDaoIT.java
index 5ca8bb4573..1eef7b085e 100644
--- a/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/dao/MailingListDaoIT.java
+++ b/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/dao/MailingListDaoIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.dao;
 
diff --git a/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/dao/MessageDaoIT.java b/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/dao/MessageDaoIT.java
index fb065d4ec4..8cd4e05cc2 100644
--- a/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/dao/MessageDaoIT.java
+++ b/mailinglist/mailinglist-library/src/integration-test/java/org/silverpeas/components/mailinglist/service/model/dao/MessageDaoIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.dao;
 
diff --git a/mailinglist/mailinglist-library/src/integration-test/resources/arquillian.xml b/mailinglist/mailinglist-library/src/integration-test/resources/arquillian.xml
index c14046f2bb..bc5b073b7d 100644
--- a/mailinglist/mailinglist-library/src/integration-test/resources/arquillian.xml
+++ b/mailinglist/mailinglist-library/src/integration-test/resources/arquillian.xml
@@ -1,6 +1,6 @@
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <arquillian xmlns="http://jboss.org/schema/arquillian"
diff --git a/mailinglist/mailinglist-library/src/integration-test/resources/org/silverpeas/index/indexing/Parser.properties b/mailinglist/mailinglist-library/src/integration-test/resources/org/silverpeas/index/indexing/Parser.properties
index 93027a31a4..c844ac4117 100644
--- a/mailinglist/mailinglist-library/src/integration-test/resources/org/silverpeas/index/indexing/Parser.properties
+++ b/mailinglist/mailinglist-library/src/integration-test/resources/org/silverpeas/index/indexing/Parser.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 # for each file format, the corresponding parser
 
diff --git a/mailinglist/mailinglist-library/src/integration-test/resources/org/silverpeas/notificationserver/channel/smtp/smtpSettings.properties b/mailinglist/mailinglist-library/src/integration-test/resources/org/silverpeas/notificationserver/channel/smtp/smtpSettings.properties
index 9ecbe90301..887c92bf1c 100644
--- a/mailinglist/mailinglist-library/src/integration-test/resources/org/silverpeas/notificationserver/channel/smtp/smtpSettings.properties
+++ b/mailinglist/mailinglist-library/src/integration-test/resources/org/silverpeas/notificationserver/channel/smtp/smtpSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 SMTPAuthentication=false
 SMTPUser=bsimpson
diff --git a/mailinglist/mailinglist-library/src/integration-test/resources/org/silverpeas/util/attachment/Attachment.properties b/mailinglist/mailinglist-library/src/integration-test/resources/org/silverpeas/util/attachment/Attachment.properties
index 0b046e0142..9e14cdc9c8 100644
--- a/mailinglist/mailinglist-library/src/integration-test/resources/org/silverpeas/util/attachment/Attachment.properties
+++ b/mailinglist/mailinglist-library/src/integration-test/resources/org/silverpeas/util/attachment/Attachment.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 # Properties of Attachment
 # -------------------------
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/MailingListStatistics.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/MailingListStatistics.java
index d8dc05d022..4a907168c1 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/MailingListStatistics.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/MailingListStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/MailinglistInstancePostConstruction.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/MailinglistInstancePostConstruction.java
index ac3c8388e0..ebcd17e55b 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/MailinglistInstancePostConstruction.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/MailinglistInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/MailinglistInstancePreDestruction.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/MailinglistInstancePreDestruction.java
index f17f1d4389..2d3b37724f 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/MailinglistInstancePreDestruction.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/MailinglistInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/model/MailingListComponent.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/model/MailingListComponent.java
index 80cddcbd1e..00c734960a 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/model/MailingListComponent.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/model/MailingListComponent.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.model;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/model/MailingListRuntimeException.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/model/MailingListRuntimeException.java
index 9e00edb107..acc48c58ee 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/model/MailingListRuntimeException.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/model/MailingListRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.model;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/MailCheckerInitialize.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/MailCheckerInitialize.java
index 301a9e74d6..74881da47b 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/MailCheckerInitialize.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/MailCheckerInitialize.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/MailingListServicesProvider.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/MailingListServicesProvider.java
index 11ed091b1a..d90ce65252 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/MailingListServicesProvider.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/MailingListServicesProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/event/MessageEvent.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/event/MessageEvent.java
index b85d88c9b9..2900809ced 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/event/MessageEvent.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/event/MessageEvent.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.event;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/event/MessageListener.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/event/MessageListener.java
index 1d7f2bc550..2cc0b8e7d8 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/event/MessageListener.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/event/MessageListener.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.event;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/job/BetterMimeMessage.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/job/BetterMimeMessage.java
index 7c67ca93a2..4b0d51fa9f 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/job/BetterMimeMessage.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/job/BetterMimeMessage.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.job;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/job/MailProcessor.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/job/MailProcessor.java
index 55d85535ea..839bae1bab 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/job/MailProcessor.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/job/MailProcessor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.job;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/job/MessageChecker.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/job/MessageChecker.java
index f4a31c6761..b8a32c5fd2 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/job/MessageChecker.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/job/MessageChecker.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.job;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MailingListService.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MailingListService.java
index de207800cf..187238bc84 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MailingListService.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MailingListService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mailinglist.service.model;
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MailingListServiceImpl.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MailingListServiceImpl.java
index 6c4de680de..6b606243cd 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MailingListServiceImpl.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MailingListServiceImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MessageIndexer.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MessageIndexer.java
index f8132ef948..14aa4e0022 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MessageIndexer.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MessageIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MessageService.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MessageService.java
index 038ae517a2..87ebcc2224 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MessageService.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MessageService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MessageServiceImpl.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MessageServiceImpl.java
index 5e4db0c9b5..6808fe0732 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MessageServiceImpl.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/MessageServiceImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/Activity.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/Activity.java
index f4b1d3267b..d993f844f5 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/Activity.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/Activity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.beans;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/Attachment.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/Attachment.java
index 3e423e3e1a..63c5d14b4e 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/Attachment.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/Attachment.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.beans;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/ExternalUser.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/ExternalUser.java
index b350397099..ee31fdf6ad 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/ExternalUser.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/ExternalUser.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.beans;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/IdentifiableObject.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/IdentifiableObject.java
index f60d5a2082..2698f7b31b 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/IdentifiableObject.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/IdentifiableObject.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.beans;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalGroupSubscriber.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalGroupSubscriber.java
index 418ede9f2c..c20bdafa50 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalGroupSubscriber.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalGroupSubscriber.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.beans;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalSubscriber.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalSubscriber.java
index 897814e74c..ee41178828 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalSubscriber.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalSubscriber.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.beans;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalUser.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalUser.java
index f80485d16f..f93a40b115 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalUser.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalUser.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.beans;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalUserSubscriber.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalUserSubscriber.java
index 67222d474a..4706ebb343 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalUserSubscriber.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/InternalUserSubscriber.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.beans;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/MailingList.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/MailingList.java
index fec03c0618..7822e5d94b 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/MailingList.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/MailingList.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.beans;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/MailingListActivity.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/MailingListActivity.java
index 50cfd2b82d..85b314a34d 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/MailingListActivity.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/MailingListActivity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.beans;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/Message.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/Message.java
index ba51f09257..0406a55455 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/Message.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/beans/Message.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.beans;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MailingListDao.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MailingListDao.java
index b60d2a0e9e..e6421f7878 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MailingListDao.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MailingListDao.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.dao;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MailingListDaoImpl.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MailingListDaoImpl.java
index d044b8cd02..55246a6412 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MailingListDaoImpl.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MailingListDaoImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.dao;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MessageDao.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MessageDao.java
index 8657357550..10a376a06e 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MessageDao.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MessageDao.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.dao;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MessageDaoImpl.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MessageDaoImpl.java
index 9cc81e6df7..051b1f28b6 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MessageDaoImpl.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/model/dao/MessageDaoImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.dao;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/AbstractNotificationFormatter.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/AbstractNotificationFormatter.java
index 76e3744253..afc5767a4f 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/AbstractNotificationFormatter.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/AbstractNotificationFormatter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.notification;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/AdvancedNotificationFormatter.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/AdvancedNotificationFormatter.java
index 836e8bd6b5..6def7442b6 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/AdvancedNotificationFormatter.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/AdvancedNotificationFormatter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.notification;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/NotificationFormatter.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/NotificationFormatter.java
index f97f983db2..a0c2939187 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/NotificationFormatter.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/NotificationFormatter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.notification;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/NotificationHelper.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/NotificationHelper.java
index 5ad5d2962a..2988fb35be 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/NotificationHelper.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/NotificationHelper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.notification;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/SimpleNotificationFormatter.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/SimpleNotificationFormatter.java
index 905f12f1b5..d3d08f7fad 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/SimpleNotificationFormatter.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/notification/SimpleNotificationFormatter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.notification;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/Html2Text.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/Html2Text.java
index cfd96d111b..786433d1a7 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/Html2Text.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/Html2Text.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.util;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/HtmlCleaner.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/HtmlCleaner.java
index 87e5e0ce1a..49bca02caf 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/HtmlCleaner.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/HtmlCleaner.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.util;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/OrderBy.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/OrderBy.java
index ebf26f829c..6cc1140d73 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/OrderBy.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/OrderBy.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.util;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/neko/EntityReplaceWriter.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/neko/EntityReplaceWriter.java
index 2a0ee4c70f..9d188469c8 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/neko/EntityReplaceWriter.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/neko/EntityReplaceWriter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.util.neko;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/neko/NekoElementRemover.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/neko/NekoElementRemover.java
index b290beec76..078e7e517e 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/neko/NekoElementRemover.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/neko/NekoElementRemover.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.util.neko;
 
diff --git a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/neko/NekoHtmlCleaner.java b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/neko/NekoHtmlCleaner.java
index 0d7d423710..fde7b898ca 100644
--- a/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/neko/NekoHtmlCleaner.java
+++ b/mailinglist/mailinglist-library/src/main/java/org/silverpeas/components/mailinglist/service/util/neko/NekoHtmlCleaner.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.util.neko;
 
diff --git a/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/job/BetterMimeMessageTest.java b/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/job/BetterMimeMessageTest.java
index db4f2bd85e..bf89bb87be 100644
--- a/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/job/BetterMimeMessageTest.java
+++ b/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/job/BetterMimeMessageTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.job;
 
diff --git a/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/model/beans/TestExternalUser.java b/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/model/beans/TestExternalUser.java
index ae99d772d9..11b6adf44c 100644
--- a/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/model/beans/TestExternalUser.java
+++ b/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/model/beans/TestExternalUser.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.beans;
 
diff --git a/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/model/beans/TestMessage.java b/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/model/beans/TestMessage.java
index 52d08cb163..476ded0440 100644
--- a/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/model/beans/TestMessage.java
+++ b/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/model/beans/TestMessage.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.model.beans;
 
diff --git a/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/util/TestHtml2Text.java b/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/util/TestHtml2Text.java
index 64b68bad8b..23d7a7dcba 100644
--- a/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/util/TestHtml2Text.java
+++ b/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/util/TestHtml2Text.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.util;
 
diff --git a/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/util/TestNekoHtml2Text.java b/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/util/TestNekoHtml2Text.java
index c936b26673..f673e870f5 100644
--- a/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/util/TestNekoHtml2Text.java
+++ b/mailinglist/mailinglist-library/src/test/java/org/silverpeas/components/mailinglist/service/util/TestNekoHtml2Text.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.service.util;
 
diff --git a/mailinglist/mailinglist-library/src/test/resources/maven.properties b/mailinglist/mailinglist-library/src/test/resources/maven.properties
index 6ab1fe6137..a91fefa61a 100644
--- a/mailinglist/mailinglist-library/src/test/resources/maven.properties
+++ b/mailinglist/mailinglist-library/src/test/resources/maven.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
 #
 
 build.dir=${project.build.directory}/temp
diff --git a/mailinglist/mailinglist-library/src/test/resources/org/silverpeas/lookAndFeel/generalLook.properties b/mailinglist/mailinglist-library/src/test/resources/org/silverpeas/lookAndFeel/generalLook.properties
index 83e7bf07f2..5c79c82039 100644
--- a/mailinglist/mailinglist-library/src/test/resources/org/silverpeas/lookAndFeel/generalLook.properties
+++ b/mailinglist/mailinglist-library/src/test/resources/org/silverpeas/lookAndFeel/generalLook.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 // Page de login par d\ufffdfaut
 loginPage =
diff --git a/mailinglist/mailinglist-war/pom.xml b/mailinglist/mailinglist-war/pom.xml
index 3702c943be..3860467c66 100644
--- a/mailinglist/mailinglist-war/pom.xml
+++ b/mailinglist/mailinglist-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>mailinglist</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.mailinglist</groupId>
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/MailinglistIndexer.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/MailinglistIndexer.java
index ddc7d8206f..d8bfe9c625 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/MailinglistIndexer.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/MailinglistIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist;
 
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/control/MailingListSessionController.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/control/MailingListSessionController.java
index f83106a7c8..c17f9c7a4a 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/control/MailingListSessionController.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/control/MailingListSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.control;
 
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/ActivitiesProcessor.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/ActivitiesProcessor.java
index f1795290b4..159a9ff53c 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/ActivitiesProcessor.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/ActivitiesProcessor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.servlets;
 
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/AttachmentServlet.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/AttachmentServlet.java
index a11c1e8045..3bc0ba79c8 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/AttachmentServlet.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/AttachmentServlet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.servlets;
 
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/DisplayableAttachment.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/DisplayableAttachment.java
index f3c0a4592f..661d409c76 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/DisplayableAttachment.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/DisplayableAttachment.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mailinglist.servlets;
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/GoToMessage.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/GoToMessage.java
index d36f1fba48..b615067f01 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/GoToMessage.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/GoToMessage.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.servlets;
 
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MailingListProcessor.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MailingListProcessor.java
index 32f68022b4..d002b8a292 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MailingListProcessor.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MailingListProcessor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.servlets;
 
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MailingListRequestRouter.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MailingListRequestRouter.java
index 25d6462fea..556da9616e 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MailingListRequestRouter.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MailingListRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mailinglist.servlets;
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MailingListRoutage.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MailingListRoutage.java
index f2dafced52..a05e691f9c 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MailingListRoutage.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MailingListRoutage.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mailinglist.servlets;
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MessageProcessor.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MessageProcessor.java
index 2e96255ba0..bb2ef08067 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MessageProcessor.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/MessageProcessor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.servlets;
 
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/ModerationProcessor.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/ModerationProcessor.java
index 1c0c100b58..eb1c364c1f 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/ModerationProcessor.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/ModerationProcessor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.servlets;
 
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/PortletProcessor.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/PortletProcessor.java
index c88b25046b..6107337507 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/PortletProcessor.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/PortletProcessor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.servlets;
 
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/RestRequest.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/RestRequest.java
index 1d359488f2..6fb59cbb68 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/RestRequest.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/RestRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.servlets;
 
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/RssMailingListServlet.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/RssMailingListServlet.java
index 72ef3d42a7..8611cee75e 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/RssMailingListServlet.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/RssMailingListServlet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.servlets;
 
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/SubscribersProcessor.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/SubscribersProcessor.java
index d126f5c496..ecc023edd1 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/SubscribersProcessor.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/SubscribersProcessor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.servlets;
 
diff --git a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/UsersProcessor.java b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/UsersProcessor.java
index 4fb3768835..1b419ff6a0 100644
--- a/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/UsersProcessor.java
+++ b/mailinglist/mailinglist-war/src/main/java/org/silverpeas/components/mailinglist/servlets/UsersProcessor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mailinglist.servlets;
 
diff --git a/mailinglist/mailinglist-war/src/main/webapp/WEB-INF/web.xml b/mailinglist/mailinglist-war/src/main/webapp/WEB-INF/web.xml
index e59e59d1ed..93976ed969 100644
--- a/mailinglist/mailinglist-war/src/main/webapp/WEB-INF/web.xml
+++ b/mailinglist/mailinglist-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/activity.jsp b/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/activity.jsp
index dc83c425b0..6486d5b752 100644
--- a/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/activity.jsp
+++ b/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/activity.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/check.jsp b/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/check.jsp
index c5c181b784..17522c7707 100644
--- a/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/check.jsp
+++ b/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/list.jsp b/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/list.jsp
index ced6434ccd..1169fd11de 100644
--- a/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/list.jsp
+++ b/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/list.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/message.jsp b/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/message.jsp
index d9d206228c..17e1fb6b4e 100644
--- a/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/message.jsp
+++ b/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/message.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/moderation.jsp b/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/moderation.jsp
index e9fc64e6a4..89e584d5fb 100644
--- a/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/moderation.jsp
+++ b/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/moderation.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/portlet.jsp b/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/portlet.jsp
index b2174b8494..98baa45d62 100644
--- a/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/portlet.jsp
+++ b/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/portlet.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/users.jsp b/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/users.jsp
index 1e54c955aa..a02a16fe11 100644
--- a/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/users.jsp
+++ b/mailinglist/mailinglist-war/src/main/webapp/mailingList/jsp/users.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/mailinglist/pom.xml b/mailinglist/pom.xml
index e1b11c2621..63f4e16167 100644
--- a/mailinglist/pom.xml
+++ b/mailinglist/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/mydb/mydb-configuration/pom.xml b/mydb/mydb-configuration/pom.xml
index 0d8480bc81..2f2770ccc2 100644
--- a/mydb/mydb-configuration/pom.xml
+++ b/mydb/mydb-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>mydb</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.mydb</groupId>
diff --git a/mydb/mydb-configuration/src/main/config/migrations/modules/mydb-migration.xml b/mydb/mydb-configuration/src/main/config/migrations/modules/mydb-migration.xml
index f1c1ad45a8..86523d38c7 100644
--- a/mydb/mydb-configuration/src/main/config/migrations/modules/mydb-migration.xml
+++ b/mydb/mydb-configuration/src/main/config/migrations/modules/mydb-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   -->
 <migration module="myDB"
            xmlns="http://silverpeas.org/xml/ns/migration"
diff --git a/mydb/mydb-configuration/src/main/config/migrations/scripts/myDB/up002/setDataSourceFromJdbcUrl.groovy b/mydb/mydb-configuration/src/main/config/migrations/scripts/myDB/up002/setDataSourceFromJdbcUrl.groovy
index 8aeb950bd4..72caa83fdc 100644
--- a/mydb/mydb-configuration/src/main/config/migrations/scripts/myDB/up002/setDataSourceFromJdbcUrl.groovy
+++ b/mydb/mydb-configuration/src/main/config/migrations/scripts/myDB/up002/setDataSourceFromJdbcUrl.groovy
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /**
diff --git a/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/multilang/mydb.properties b/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/multilang/mydb.properties
index 71142da7b1..ad55cb2b3d 100644
--- a/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/multilang/mydb.properties
+++ b/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/multilang/mydb.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 mydb.error.tooLongValue =  Too many characters
 mydb.error.valueNotNumber = Integer field required
diff --git a/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/multilang/mydb_de.properties b/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/multilang/mydb_de.properties
index 136dcacde8..01550d323a 100644
--- a/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/multilang/mydb_de.properties
+++ b/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/multilang/mydb_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 mydb.error.invalidConnectionSettings = Verbindungsparameter falsch
diff --git a/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/multilang/mydb_fr.properties b/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/multilang/mydb_fr.properties
index d270ff2925..3c50e465fe 100644
--- a/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/multilang/mydb_fr.properties
+++ b/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/multilang/mydb_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 mydb.error.invalidConnectionSettings = param\u00e8tres de connexion incorrects
 mydb.error.tooLongValue =  champ trop long
diff --git a/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/settings/dataSources.properties b/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/settings/dataSources.properties
index d539115c39..03467c01b4 100644
--- a/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/settings/dataSources.properties
+++ b/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/settings/dataSources.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify it under the terms of the
 # GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
 # redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
 # applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
 # text describing the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 # Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License along with this program.
-# If not, see <http://www.gnu.org/licenses/>.
+# If not, see <https://www.gnu.org/licenses/>.
 #
 
 # number of configured data sources
diff --git a/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/settings/mydbIcons.properties b/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/settings/mydbIcons.properties
index 72a98c1258..40fa5a54d7 100644
--- a/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/settings/mydbIcons.properties
+++ b/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/mydb/settings/mydbIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 mydb.icons.addRecord = /util/icons/create-action/add-champ.png
 mydb.icons.updateLine = /util/icons/update.gif
diff --git a/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/util/logging/myDBLogging.properties b/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/util/logging/myDBLogging.properties
index 06ad16a45e..596553f848 100644
--- a/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/util/logging/myDBLogging.properties
+++ b/mydb/mydb-configuration/src/main/config/properties/org/silverpeas/util/logging/myDBLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/mydb/mydb-configuration/src/main/config/xmlcomponents/myDB.xml b/mydb/mydb-configuration/src/main/config/xmlcomponents/myDB.xml
index 629738ce51..eb47024365 100644
--- a/mydb/mydb-configuration/src/main/config/xmlcomponents/myDB.xml
+++ b/mydb/mydb-configuration/src/main/config/xmlcomponents/myDB.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/mydb/mydb-library/pom.xml b/mydb/mydb-library/pom.xml
index b2bb655f84..e933069358 100644
--- a/mydb/mydb-library/pom.xml
+++ b/mydb/mydb-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>mydb</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.mydb</groupId>
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/MyDBInstancePreDestruction.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/MyDBInstancePreDestruction.java
index f97f8e092c..97bd4a59c7 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/MyDBInstancePreDestruction.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/MyDBInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mydb;
 
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/DataSourceDefinition.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/DataSourceDefinition.java
index 8cc9011e29..29299b3bcb 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/DataSourceDefinition.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/DataSourceDefinition.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/DbColumn.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/DbColumn.java
index 9ad464df25..df92fcfcd9 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/DbColumn.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/DbColumn.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/DbTable.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/DbTable.java
index 8660dd6d95..a63d7e0799 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/DbTable.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/DbTable.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/JdbcRequester.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/JdbcRequester.java
index 04ce9acfba..691790b933 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/JdbcRequester.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/JdbcRequester.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/MyDBConnectionInfo.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/MyDBConnectionInfo.java
index 7466a8971d..0f070538d8 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/MyDBConnectionInfo.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/MyDBConnectionInfo.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/MyDBConnectionInfoRepository.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/MyDBConnectionInfoRepository.java
index b3297b75fa..0045baa94c 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/MyDBConnectionInfoRepository.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/MyDBConnectionInfoRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/SqlTypes.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/SqlTypes.java
index e762afeca2..17ca0fc265 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/SqlTypes.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/SqlTypes.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/TableFieldValue.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/TableFieldValue.java
index c76807ca69..67376b6c48 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/TableFieldValue.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/TableFieldValue.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/TableRow.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/TableRow.java
index 7faeffca9b..5511bf65fe 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/TableRow.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/TableRow.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/AbstractColumnValuePredicate.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/AbstractColumnValuePredicate.java
index 29e7ab4e92..72052c6a05 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/AbstractColumnValuePredicate.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/AbstractColumnValuePredicate.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model.predicates;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/ColumnValuePredicate.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/ColumnValuePredicate.java
index cec88cfe05..0ef52d9222 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/ColumnValuePredicate.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/ColumnValuePredicate.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model.predicates;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Equality.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Equality.java
index d09ea825a9..f13965f35f 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Equality.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Equality.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model.predicates;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Identity.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Identity.java
index 2e3e04ea07..bf038846e0 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Identity.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Identity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model.predicates;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Inclusion.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Inclusion.java
index ac12b05657..2d9f78afbb 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Inclusion.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Inclusion.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model.predicates;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Inequality.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Inequality.java
index 640f9e2e71..cf02e71918 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Inequality.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Inequality.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model.predicates;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Inferiority.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Inferiority.java
index c9dbf652be..845279ad20 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Inferiority.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Inferiority.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model.predicates;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Like.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Like.java
index 8e687de6c9..77b4edc4c2 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Like.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Like.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model.predicates;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/StrictInferiority.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/StrictInferiority.java
index 3dfd690fd2..3ae47eb958 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/StrictInferiority.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/StrictInferiority.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model.predicates;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/StrictSuperiority.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/StrictSuperiority.java
index 39fa124f98..4ca0882cc5 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/StrictSuperiority.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/StrictSuperiority.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model.predicates;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Superiority.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Superiority.java
index 65e5a663ab..8e12e7c3bd 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Superiority.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/model/predicates/Superiority.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model.predicates;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/MyDBConnectionInfoService.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/MyDBConnectionInfoService.java
index 5500d5bee4..74fd98e5f9 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/MyDBConnectionInfoService.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/MyDBConnectionInfoService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mydb.service;
 
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/MyDBException.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/MyDBException.java
index 3477a435e8..f8fe0632c9 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/MyDBException.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/MyDBException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.service;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/MyDBRuntimeException.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/MyDBRuntimeException.java
index 0bbd37be8f..de6f22bca7 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/MyDBRuntimeException.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/MyDBRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.service;
diff --git a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/impl/SimpleMyDBConnectionInfoService.java b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/impl/SimpleMyDBConnectionInfoService.java
index ed10a47ec8..a3753d3fd8 100644
--- a/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/impl/SimpleMyDBConnectionInfoService.java
+++ b/mydb/mydb-library/src/main/java/org/silverpeas/components/mydb/service/impl/SimpleMyDBConnectionInfoService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.mydb.service.impl;
 
diff --git a/mydb/mydb-library/src/test/java/org/silverpeas/components/mydb/model/DbColumnTest.java b/mydb/mydb-library/src/test/java/org/silverpeas/components/mydb/model/DbColumnTest.java
index bcc0ef57c8..0eacf4fa14 100644
--- a/mydb/mydb-library/src/test/java/org/silverpeas/components/mydb/model/DbColumnTest.java
+++ b/mydb/mydb-library/src/test/java/org/silverpeas/components/mydb/model/DbColumnTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.model;
diff --git a/mydb/mydb-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer b/mydb/mydb-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
index fc51b7e4fd..02b5b225ce 100644
--- a/mydb/mydb-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
+++ b/mydb/mydb-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception. You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 org.silverpeas.core.test.TestBeanContainer
\ No newline at end of file
diff --git a/mydb/mydb-war/pom.xml b/mydb/mydb-war/pom.xml
index 0878c6adb7..dc94b0c9d6 100644
--- a/mydb/mydb-war/pom.xml
+++ b/mydb/mydb-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>mydb</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.mydb</groupId>
diff --git a/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/MyDBMessageManager.java b/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/MyDBMessageManager.java
index 3c3c1703f9..04ce209240 100644
--- a/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/MyDBMessageManager.java
+++ b/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/MyDBMessageManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.web;
diff --git a/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/MyDBWebController.java b/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/MyDBWebController.java
index faf4c67463..c33909d60d 100644
--- a/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/MyDBWebController.java
+++ b/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/MyDBWebController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.web;
diff --git a/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/MyDBWebRequestContext.java b/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/MyDBWebRequestContext.java
index 7077676c73..80b21cb11a 100644
--- a/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/MyDBWebRequestContext.java
+++ b/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/MyDBWebRequestContext.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.web;
diff --git a/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/TableRowUIEntity.java b/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/TableRowUIEntity.java
index ef4f931529..c4058ba01e 100644
--- a/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/TableRowUIEntity.java
+++ b/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/TableRowUIEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.web;
diff --git a/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/TableRowsFilter.java b/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/TableRowsFilter.java
index 60c371a249..bdba1946a7 100644
--- a/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/TableRowsFilter.java
+++ b/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/TableRowsFilter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.web;
diff --git a/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/TableView.java b/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/TableView.java
index d855a885b8..6e5cd66cb7 100644
--- a/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/TableView.java
+++ b/mydb/mydb-war/src/main/java/org/silverpeas/components/mydb/web/TableView.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.mydb.web;
diff --git a/mydb/mydb-war/src/main/webapp/WEB-INF/tags/silverpeas/mydb/messages.tag b/mydb/mydb-war/src/main/webapp/WEB-INF/tags/silverpeas/mydb/messages.tag
index 016df25f48..966de8997f 100644
--- a/mydb/mydb-war/src/main/webapp/WEB-INF/tags/silverpeas/mydb/messages.tag
+++ b/mydb/mydb-war/src/main/webapp/WEB-INF/tags/silverpeas/mydb/messages.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
   
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
   
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/mydb/mydb-war/src/main/webapp/WEB-INF/web.xml b/mydb/mydb-war/src/main/webapp/WEB-INF/web.xml
index 5fd234a6db..b748eb57a5 100644
--- a/mydb/mydb-war/src/main/webapp/WEB-INF/web.xml
+++ b/mydb/mydb-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/mydb/mydb-war/src/main/webapp/myDB/jsp/connectionSettings.jsp b/mydb/mydb-war/src/main/webapp/myDB/jsp/connectionSettings.jsp
index 8fae7e7da2..eae87e9d7a 100644
--- a/mydb/mydb-war/src/main/webapp/myDB/jsp/connectionSettings.jsp
+++ b/mydb/mydb-war/src/main/webapp/myDB/jsp/connectionSettings.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ include file="head.jsp" %>
diff --git a/mydb/mydb-war/src/main/webapp/myDB/jsp/error.jsp b/mydb/mydb-war/src/main/webapp/myDB/jsp/error.jsp
index a9aab36f10..2c74cf9583 100644
--- a/mydb/mydb-war/src/main/webapp/myDB/jsp/error.jsp
+++ b/mydb/mydb-war/src/main/webapp/myDB/jsp/error.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ include file="head.jsp" %>
diff --git a/mydb/mydb-war/src/main/webapp/myDB/jsp/fkTable.jsp b/mydb/mydb-war/src/main/webapp/myDB/jsp/fkTable.jsp
index 96741e0bb2..682b7540fd 100644
--- a/mydb/mydb-war/src/main/webapp/myDB/jsp/fkTable.jsp
+++ b/mydb/mydb-war/src/main/webapp/myDB/jsp/fkTable.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ include file="head.jsp" %>
diff --git a/mydb/mydb-war/src/main/webapp/myDB/jsp/head.jsp b/mydb/mydb-war/src/main/webapp/myDB/jsp/head.jsp
index 5d4fcefb9a..3d2f90ccc2 100644
--- a/mydb/mydb-war/src/main/webapp/myDB/jsp/head.jsp
+++ b/mydb/mydb-war/src/main/webapp/myDB/jsp/head.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%
diff --git a/mydb/mydb-war/src/main/webapp/myDB/jsp/mydb.jsp b/mydb/mydb-war/src/main/webapp/myDB/jsp/mydb.jsp
index bd12d5122c..73d4dccc44 100644
--- a/mydb/mydb-war/src/main/webapp/myDB/jsp/mydb.jsp
+++ b/mydb/mydb-war/src/main/webapp/myDB/jsp/mydb.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ include file="head.jsp" %>
diff --git a/mydb/mydb-war/src/main/webapp/myDB/jsp/rowForm.jsp b/mydb/mydb-war/src/main/webapp/myDB/jsp/rowForm.jsp
index 60b17f69d7..ee92416bac 100644
--- a/mydb/mydb-war/src/main/webapp/myDB/jsp/rowForm.jsp
+++ b/mydb/mydb-war/src/main/webapp/myDB/jsp/rowForm.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ include file="head.jsp" %>
diff --git a/mydb/pom.xml b/mydb/pom.xml
index a4d45028ab..5b3d597369 100644
--- a/mydb/pom.xml
+++ b/mydb/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
   
   <groupId>org.silverpeas.components</groupId>
diff --git a/organizationchart/organizationchart-configuration/pom.xml b/organizationchart/organizationchart-configuration/pom.xml
index c2227f005b..9a69cab6d6 100644
--- a/organizationchart/organizationchart-configuration/pom.xml
+++ b/organizationchart/organizationchart-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>organizationchart</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.organizationchart</groupId>
diff --git a/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle.properties b/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle.properties
index ebaec5b961..e36f7bd27d 100644
--- a/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle.properties
+++ b/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 organizationchart.explications = Si aucune nouvelle fen�tre n'est apparue, cliquez
 organizationchart.ici = ici
diff --git a/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle_de.properties b/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle_de.properties
index aeb5c2e230..1fdbfdfb54 100644
--- a/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle_de.properties
+++ b/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 organizationchart.explications = Wenn kein neues Fenster erschienen ist, klicken Sie
 organizationchart.ici = hier
diff --git a/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle_en.properties b/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle_en.properties
index ec6bc12b36..284f32f68c 100644
--- a/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle_en.properties
+++ b/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 organizationchart.explications = If no new window appears, click
 organizationchart.ici = here
diff --git a/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle_fr.properties b/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle_fr.properties
index ebaec5b961..e36f7bd27d 100644
--- a/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle_fr.properties
+++ b/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/multilang/OrganizationChartBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 organizationchart.explications = Si aucune nouvelle fen�tre n'est apparue, cliquez
 organizationchart.ici = ici
diff --git a/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/settings/OrganizationChartIcons.properties b/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/settings/OrganizationChartIcons.properties
index 28c1050efd..730324d81d 100644
--- a/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/settings/OrganizationChartIcons.properties
+++ b/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/settings/OrganizationChartIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 organizationchart.icons.users = /silverpeas/organizationchart/img/users.gif
 organizationchart.icons.print =
\ No newline at end of file
diff --git a/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/settings/OrganizationChartSettings.properties b/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/settings/OrganizationChartSettings.properties
index fc3afb5138..1b307f1822 100644
--- a/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/settings/OrganizationChartSettings.properties
+++ b/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/components/organizationchart/settings/OrganizationChartSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,6 +19,6 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 sort.units.name = false
\ No newline at end of file
diff --git a/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/util/logging/organizationchartLogging.properties b/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/util/logging/organizationchartLogging.properties
index 6f2ee4721a..915996464e 100644
--- a/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/util/logging/organizationchartLogging.properties
+++ b/organizationchart/organizationchart-configuration/src/main/config/properties/org/silverpeas/util/logging/organizationchartLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/organizationchart/organizationchart-configuration/src/main/config/xmlcomponents/organizationchart.xml b/organizationchart/organizationchart-configuration/src/main/config/xmlcomponents/organizationchart.xml
index fadcd347cc..50f419441f 100644
--- a/organizationchart/organizationchart-configuration/src/main/config/xmlcomponents/organizationchart.xml
+++ b/organizationchart/organizationchart-configuration/src/main/config/xmlcomponents/organizationchart.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/organizationchart/organizationchart-configuration/src/main/config/xmlcomponents/orgchartGroup.xml b/organizationchart/organizationchart-configuration/src/main/config/xmlcomponents/orgchartGroup.xml
index 60c737b936..a795edd08f 100644
--- a/organizationchart/organizationchart-configuration/src/main/config/xmlcomponents/orgchartGroup.xml
+++ b/organizationchart/organizationchart-configuration/src/main/config/xmlcomponents/orgchartGroup.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/organizationchart/organizationchart-library/pom.xml b/organizationchart/organizationchart-library/pom.xml
index 26b1aa4088..8c2653afea 100644
--- a/organizationchart/organizationchart-library/pom.xml
+++ b/organizationchart/organizationchart-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>organizationchart</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.organizationchart</groupId>
diff --git a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalChart.java b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalChart.java
index 7144ce6bd8..2ba99c3ad0 100644
--- a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalChart.java
+++ b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalChart.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.model;
 
diff --git a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalChartType.java b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalChartType.java
index a35dea7b7f..8f892eb63b 100644
--- a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalChartType.java
+++ b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalChartType.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.model;
 
diff --git a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalPerson.java b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalPerson.java
index ab24060baa..09e1402909 100644
--- a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalPerson.java
+++ b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalPerson.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.model;
 
diff --git a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalPersonComparator.java b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalPersonComparator.java
index a42ef81b04..04d93479de 100644
--- a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalPersonComparator.java
+++ b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalPersonComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.model;
 
diff --git a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalRole.java b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalRole.java
index 3985fc4d96..76202704ec 100644
--- a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalRole.java
+++ b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalRole.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.model;
 
diff --git a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalUnit.java b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalUnit.java
index a6873b029f..5921f167f3 100644
--- a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalUnit.java
+++ b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/OrganizationalUnit.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.model;
 
diff --git a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/PersonCategory.java b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/PersonCategory.java
index 7f7dcea94d..ed01fa4a9c 100644
--- a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/PersonCategory.java
+++ b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/model/PersonCategory.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.model;
 
diff --git a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/AbstractOrganizationChartBuilder.java b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/AbstractOrganizationChartBuilder.java
index 384bfac698..64b6b53169 100644
--- a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/AbstractOrganizationChartBuilder.java
+++ b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/AbstractOrganizationChartBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.service;
 
diff --git a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/AbstractOrganizationChartConfiguration.java b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/AbstractOrganizationChartConfiguration.java
index 5623275b46..b5435c0edd 100644
--- a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/AbstractOrganizationChartConfiguration.java
+++ b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/AbstractOrganizationChartConfiguration.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.service;
 
diff --git a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/GroupOrganizationChartBuilder.java b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/GroupOrganizationChartBuilder.java
index 9da32dbef9..b26c4e458b 100644
--- a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/GroupOrganizationChartBuilder.java
+++ b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/GroupOrganizationChartBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.service;
 
diff --git a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/GroupOrganizationChartConfiguration.java b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/GroupOrganizationChartConfiguration.java
index fc96d8854a..18caa8057d 100644
--- a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/GroupOrganizationChartConfiguration.java
+++ b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/GroupOrganizationChartConfiguration.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.service;
 
diff --git a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/LdapOrganizationChartBuilder.java b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/LdapOrganizationChartBuilder.java
index 5256819cff..14918044a2 100644
--- a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/LdapOrganizationChartBuilder.java
+++ b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/LdapOrganizationChartBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.service;
 
diff --git a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/LdapOrganizationChartConfiguration.java b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/LdapOrganizationChartConfiguration.java
index 50523f4523..34af94277b 100644
--- a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/LdapOrganizationChartConfiguration.java
+++ b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/LdapOrganizationChartConfiguration.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.service;
 
diff --git a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/OrganizationChartService.java b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/OrganizationChartService.java
index be4d1b952e..b36a419c09 100644
--- a/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/OrganizationChartService.java
+++ b/organizationchart/organizationchart-library/src/main/java/org/silverpeas/components/organizationchart/service/OrganizationChartService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.service;
 
diff --git a/organizationchart/organizationchart-library/src/test/java/org/silverpeas/components/organizationchart/stub/StubbedOrganizationChartBuilder.java b/organizationchart/organizationchart-library/src/test/java/org/silverpeas/components/organizationchart/stub/StubbedOrganizationChartBuilder.java
index b82d7e3df7..ffbd24554b 100644
--- a/organizationchart/organizationchart-library/src/test/java/org/silverpeas/components/organizationchart/stub/StubbedOrganizationChartBuilder.java
+++ b/organizationchart/organizationchart-library/src/test/java/org/silverpeas/components/organizationchart/stub/StubbedOrganizationChartBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.organizationchart.stub;
diff --git a/organizationchart/organizationchart-war/pom.xml b/organizationchart/organizationchart-war/pom.xml
index e44182ae00..ac1bc8ba12 100644
--- a/organizationchart/organizationchart-war/pom.xml
+++ b/organizationchart/organizationchart-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>organizationchart</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.organizationchart</groupId>
diff --git a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/OrganizationChartIndexer.java b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/OrganizationChartIndexer.java
index de38e65dac..b786520454 100644
--- a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/OrganizationChartIndexer.java
+++ b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/OrganizationChartIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.organizationchart;
diff --git a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/control/OrganizationChartSessionController.java b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/control/OrganizationChartSessionController.java
index e5f3f4d33f..ecfaaf45c5 100644
--- a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/control/OrganizationChartSessionController.java
+++ b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/control/OrganizationChartSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.control;
 
diff --git a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/control/UnitComparator.java b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/control/UnitComparator.java
index 5f45a09264..b3525e31d6 100644
--- a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/control/UnitComparator.java
+++ b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/control/UnitComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.control;
 
diff --git a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/servlets/OrganizationChartProcessor.java b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/servlets/OrganizationChartProcessor.java
index 9628736012..18c7876e4b 100644
--- a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/servlets/OrganizationChartProcessor.java
+++ b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/servlets/OrganizationChartProcessor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.organizationchart.servlets;
diff --git a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/servlets/OrganizationChartRequestRouter.java b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/servlets/OrganizationChartRequestRouter.java
index 92cf256c63..ce3cc05e24 100644
--- a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/servlets/OrganizationChartRequestRouter.java
+++ b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/servlets/OrganizationChartRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.servlets;
 
diff --git a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/CategoryBox.java b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/CategoryBox.java
index ec34b1feee..e8af75e403 100644
--- a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/CategoryBox.java
+++ b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/CategoryBox.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.view;
 
diff --git a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/ChartPersonnVO.java b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/ChartPersonnVO.java
index cac1e95a55..f425f46801 100644
--- a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/ChartPersonnVO.java
+++ b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/ChartPersonnVO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.view;
 
diff --git a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/ChartUnitVO.java b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/ChartUnitVO.java
index 1c69bf3359..5100eb1e02 100644
--- a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/ChartUnitVO.java
+++ b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/ChartUnitVO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.view;
 
diff --git a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/ChartVO.java b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/ChartVO.java
index aa2ca61d1f..b6d6a24c99 100644
--- a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/ChartVO.java
+++ b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/ChartVO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.organizationchart.view;
diff --git a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/OrganizationBox.java b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/OrganizationBox.java
index d955f10349..f3bf6de4ab 100644
--- a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/OrganizationBox.java
+++ b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/OrganizationBox.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.view;
 
diff --git a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/UserVO.java b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/UserVO.java
index 9c07ce48cc..42369c7614 100644
--- a/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/UserVO.java
+++ b/organizationchart/organizationchart-war/src/main/java/org/silverpeas/components/organizationchart/view/UserVO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.organizationchart.view;
 
diff --git a/organizationchart/organizationchart-war/src/main/webapp/WEB-INF/web.xml b/organizationchart/organizationchart-war/src/main/webapp/WEB-INF/web.xml
index 02ea28f4e3..84ef20ac91 100644
--- a/organizationchart/organizationchart-war/src/main/webapp/WEB-INF/web.xml
+++ b/organizationchart/organizationchart-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/organizationchart/organizationchart-war/src/main/webapp/organizationchart/css/organizationchart.css b/organizationchart/organizationchart-war/src/main/webapp/organizationchart/css/organizationchart.css
index 14f7e17369..2d5d986069 100644
--- a/organizationchart/organizationchart-war/src/main/webapp/organizationchart/css/organizationchart.css
+++ b/organizationchart/organizationchart-war/src/main/webapp/organizationchart/css/organizationchart.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 #chart {overflow: visible;}
diff --git a/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/chart.jsp b/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/chart.jsp
index c9cc2f8a56..56f766fc8d 100644
--- a/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/chart.jsp
+++ b/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/chart.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/chartPersonns.jsp b/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/chartPersonns.jsp
index db6b88f462..00529880d1 100644
--- a/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/chartPersonns.jsp
+++ b/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/chartPersonns.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/chartUnit.jsp b/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/chartUnit.jsp
index a05aeb1022..7e9a831482 100644
--- a/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/chartUnit.jsp
+++ b/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/chartUnit.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/check.jsp b/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/check.jsp
index c74e6efa9e..40c064388c 100644
--- a/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/check.jsp
+++ b/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/person.jsp b/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/person.jsp
index 654e2afb02..08804482af 100644
--- a/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/person.jsp
+++ b/organizationchart/organizationchart-war/src/main/webapp/organizationchart/jsp/person.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/organizationchart/pom.xml b/organizationchart/pom.xml
index c158110f89..d33142eef0 100644
--- a/organizationchart/pom.xml
+++ b/organizationchart/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
   
   <groupId>org.silverpeas.components</groupId>
diff --git a/pom.xml b/pom.xml
index 0c53d5b1e4..d15f4bf26e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,21 +21,21 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses />.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>silverpeas-project</artifactId>
-    <version>1.5</version>
+    <version>1.5.3</version>
   </parent>
 
   <groupId>org.silverpeas</groupId>
   <artifactId>components</artifactId>
-  <version>6.3-SNAPSHOT</version>
+  <version>6.3.7-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>Silverpeas Components</name>
   <url>https://www.silverpeas.org/docs/components</url>
@@ -53,7 +53,7 @@
       <id>Silverpeas</id>
       <layout>default</layout>
       <name>Silverpeas Repository</name>
-      <url>https://www.silverpeas.org/nexus/content/groups/silverpeas</url>
+      <url>https://nexus3.silverpeas.org/repository/silverpeas</url>
       <releases>
         <enabled>true</enabled>
       </releases>
@@ -65,8 +65,8 @@
 
   <properties>
     <!-- property used by the CI to both deploy a build version and release the next stable version -->
-    <next.release>6.3</next.release>
-    <core.version>6.3-SNAPSHOT</core.version>
+    <next.release>6.3.7</next.release>
+    <core.version>6.3.7-SNAPSHOT</core.version>
   </properties>
 
   <dependencies>
diff --git a/processManager/pom.xml b/processManager/pom.xml
index 4526ca95fb..94f8b93c9c 100644
--- a/processManager/pom.xml
+++ b/processManager/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/processManager/processManager-configuration/pom.xml b/processManager/processManager-configuration/pom.xml
index dda780d6ea..cc5e89e656 100644
--- a/processManager/processManager-configuration/pom.xml
+++ b/processManager/processManager-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>processmanager</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.processmanager</groupId>
diff --git a/processManager/processManager-configuration/src/main/config/data/workflowRepository/DemandeCongesSimple/DemandeCongesSimple.xml b/processManager/processManager-configuration/src/main/config/data/workflowRepository/DemandeCongesSimple/DemandeCongesSimple.xml
index ab0a7ee8a7..7aa064a6aa 100644
--- a/processManager/processManager-configuration/src/main/config/data/workflowRepository/DemandeCongesSimple/DemandeCongesSimple.xml
+++ b/processManager/processManager-configuration/src/main/config/data/workflowRepository/DemandeCongesSimple/DemandeCongesSimple.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle.properties b/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle.properties
index 3738da2939..2b5c72dbb8 100644
--- a/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle.properties
+++ b/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 processManager.action = Action
 processManager.substituteRoleLabel={0} en remplacement de {1}
diff --git a/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle_de.properties b/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle_de.properties
index 99c4dc8fef..7e2d75b358 100644
--- a/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle_de.properties
+++ b/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 processManager.action = Aktion
diff --git a/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle_en.properties b/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle_en.properties
index c51dbd4c81..2a9ee57735 100644
--- a/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle_en.properties
+++ b/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 processManager.action = Action
 processManager.substituteRoleLabel={0} as {1}'s substitute
diff --git a/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle_fr.properties b/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle_fr.properties
index 86a1dd6bfb..a68cc64f99 100644
--- a/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle_fr.properties
+++ b/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/multilang/processManagerBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 processManager.action = Action
 processManager.substituteRoleLabel={0} en remplacement de {1}
diff --git a/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/settings/processManagerIcons.properties b/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/settings/processManagerIcons.properties
index f798f6a83a..5fe55165e2 100644
--- a/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/settings/processManagerIcons.properties
+++ b/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/settings/processManagerIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 processManager.mandatoryField = /util/icons/mandatoryField.gif
 processManager.px = /util/icons/colorPix/1px.gif
diff --git a/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/settings/processManagerSettings.properties b/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/settings/processManagerSettings.properties
index 29a9c17c21..7029d8d446 100644
--- a/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/settings/processManagerSettings.properties
+++ b/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/processManager/settings/processManagerSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 # pour masquer les boutons retour ( yes / no )
 hideReturn = no
diff --git a/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/util/logging/processManagerLogging.properties b/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/util/logging/processManagerLogging.properties
index 58a20ad94c..9021f90bfc 100644
--- a/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/util/logging/processManagerLogging.properties
+++ b/processManager/processManager-configuration/src/main/config/properties/org/silverpeas/util/logging/processManagerLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/processManager/processManager-configuration/src/main/config/xmlcomponents/workflows/demandeCongesSimple.xml b/processManager/processManager-configuration/src/main/config/xmlcomponents/workflows/demandeCongesSimple.xml
index 0190de9911..ca2d5d712d 100644
--- a/processManager/processManager-configuration/src/main/config/xmlcomponents/workflows/demandeCongesSimple.xml
+++ b/processManager/processManager-configuration/src/main/config/xmlcomponents/workflows/demandeCongesSimple.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/processManager/processManager-library/pom.xml b/processManager/processManager-library/pom.xml
index a34b8626a3..c868460656 100644
--- a/processManager/processManager-library/pom.xml
+++ b/processManager/processManager-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>processmanager</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.processmanager</groupId>
diff --git a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/HistoryStepContent.java b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/HistoryStepContent.java
index b3fd303aa8..5c186ab613 100644
--- a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/HistoryStepContent.java
+++ b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/HistoryStepContent.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.processmanager;
diff --git a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessFilter.java b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessFilter.java
index a11888b317..8bab432963 100644
--- a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessFilter.java
+++ b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessFilter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.processmanager;
diff --git a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerException.java b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerException.java
index 32631c8770..6cd279867c 100644
--- a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerException.java
+++ b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.processmanager;
diff --git a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerFatalException.java b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerFatalException.java
index a97bbf07de..14b8f4a52a 100644
--- a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerFatalException.java
+++ b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerFatalException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.processmanager;
diff --git a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerInstancePostConstruction.java b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerInstancePostConstruction.java
index 80b2363db8..5e7555172d 100644
--- a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerInstancePostConstruction.java
+++ b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.processmanager;
 
diff --git a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerInstancePreDestruction.java b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerInstancePreDestruction.java
index 19284930fe..8121d423ad 100644
--- a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerInstancePreDestruction.java
+++ b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/ProcessManagerInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.processmanager;
 
diff --git a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/record/QuestionRecord.java b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/record/QuestionRecord.java
index 13942edc4b..5d195d358b 100644
--- a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/record/QuestionRecord.java
+++ b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/record/QuestionRecord.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.processmanager.record;
diff --git a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/record/QuestionTemplate.java b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/record/QuestionTemplate.java
index 71f2c1d47f..3bfca6afde 100644
--- a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/record/QuestionTemplate.java
+++ b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/record/QuestionTemplate.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.processmanager.record;
diff --git a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/service/DefaultProcessManagerService.java b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/service/DefaultProcessManagerService.java
index 3f3718f4c6..254addac32 100644
--- a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/service/DefaultProcessManagerService.java
+++ b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/service/DefaultProcessManagerService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.processmanager.service;
 
diff --git a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/service/FileContent.java b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/service/FileContent.java
index d67a6eb2c0..8b321ce1ae 100644
--- a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/service/FileContent.java
+++ b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/service/FileContent.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.processmanager.service;
diff --git a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/service/ProcessManagerService.java b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/service/ProcessManagerService.java
index ec20b147c4..9177879ed0 100644
--- a/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/service/ProcessManagerService.java
+++ b/processManager/processManager-library/src/main/java/org/silverpeas/processmanager/service/ProcessManagerService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.processmanager.service;
 
diff --git a/processManager/processManager-war/pom.xml b/processManager/processManager-war/pom.xml
index fda0eb69c3..5768c62ce2 100644
--- a/processManager/processManager-war/pom.xml
+++ b/processManager/processManager-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>processmanager</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.processmanager</groupId>
diff --git a/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/LockVO.java b/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/LockVO.java
index 4254e76a15..677cff8bbb 100644
--- a/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/LockVO.java
+++ b/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/LockVO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.processmanager;
diff --git a/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/NamedValue.java b/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/NamedValue.java
index 3bce710fbc..146b057015 100644
--- a/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/NamedValue.java
+++ b/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/NamedValue.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.processmanager;
diff --git a/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/ProcessManagerSessionController.java b/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/ProcessManagerSessionController.java
index 811491dbe2..873d2f6c29 100644
--- a/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/ProcessManagerSessionController.java
+++ b/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/ProcessManagerSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.processmanager;
 
diff --git a/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/StepVO.java b/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/StepVO.java
index b6959c3d88..d0d9d26457 100644
--- a/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/StepVO.java
+++ b/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/StepVO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.processmanager;
diff --git a/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/servlets/FunctionHandler.java b/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/servlets/FunctionHandler.java
index 973feb9aa0..85405fc60b 100644
--- a/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/servlets/FunctionHandler.java
+++ b/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/servlets/FunctionHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.processmanager.servlets;
diff --git a/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/servlets/ProcessManagerRequestRouter.java b/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/servlets/ProcessManagerRequestRouter.java
index 70d91d6250..3074b6d6a9 100644
--- a/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/servlets/ProcessManagerRequestRouter.java
+++ b/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/servlets/ProcessManagerRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.processmanager.servlets;
 
diff --git a/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/servlets/SessionSafeFunctionHandler.java b/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/servlets/SessionSafeFunctionHandler.java
index cdb2e95d22..f480f6fc5f 100644
--- a/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/servlets/SessionSafeFunctionHandler.java
+++ b/processManager/processManager-war/src/main/java/org/silverpeas/processmanager/servlets/SessionSafeFunctionHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.processmanager.servlets;
diff --git a/processManager/processManager-war/src/main/webapp/WEB-INF/web.xml b/processManager/processManager-war/src/main/webapp/WEB-INF/web.xml
index 1b7a4f4fed..48d509d8ef 100644
--- a/processManager/processManager-war/src/main/webapp/WEB-INF/web.xml
+++ b/processManager/processManager-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/admin/reAssign.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/admin/reAssign.jsp
index 3441c16354..d3cc3f6ef8 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/admin/reAssign.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/admin/reAssign.jsp
@@ -3,7 +3,7 @@
 <%@ page import="org.silverpeas.core.contribution.content.form.PagesContext" %>
 <%@ page import="org.silverpeas.core.contribution.content.form.DataRecord" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -15,7 +15,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -23,7 +23,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/admin/viewErrors.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/admin/viewErrors.jsp
index 1c85d5e1ed..c0c7d42b13 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/admin/viewErrors.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/admin/viewErrors.jsp
@@ -1,7 +1,7 @@
 <%@ page import="org.silverpeas.core.workflow.api.instance.ProcessInstance" %>
 <%@ page import="org.silverpeas.core.workflow.api.error.WorkflowError" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/attachmentManager.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/attachmentManager.jsp
index 21de6b76e8..149f68ad20 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/attachmentManager.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/attachmentManager.jsp
@@ -2,7 +2,7 @@
 <%@ page import="org.silverpeas.core.util.URLUtil" %>
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -14,7 +14,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -22,7 +22,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/checkProcessManager.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/checkProcessManager.jsp
index 0d450e0083..fdd0891464 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/checkProcessManager.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/checkProcessManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/createProcess.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/createProcess.jsp
index b3a9dd9346..bb00649202 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/createProcess.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/createProcess.jsp
@@ -1,6 +1,6 @@
 <%@ page import="org.silverpeas.core.contribution.content.form.Form" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/editAction.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/editAction.jsp
index 551253aa03..1b66108892 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/editAction.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/editAction.jsp
@@ -1,6 +1,6 @@
 <%@ page import="org.silverpeas.core.contribution.content.form.Form" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/editQuestion.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/editQuestion.jsp
index df2dad179b..0ed92782ba 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/editQuestion.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/editQuestion.jsp
@@ -1,6 +1,6 @@
 <%@ page import="org.silverpeas.core.contribution.content.form.Form" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/editResponse.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/editResponse.jsp
index 2f20599c68..22da77ba55 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/editResponse.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/editResponse.jsp
@@ -1,6 +1,6 @@
 <%@ page import="org.silverpeas.core.contribution.content.form.Form" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/editUserSettings.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/editUserSettings.jsp
index b9726c83ab..59d1a10e44 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/editUserSettings.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/editUserSettings.jsp
@@ -1,6 +1,6 @@
 <%@ page import="org.silverpeas.core.contribution.content.form.Form" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/javaScript/vuejs/replacement-templates.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/javaScript/vuejs/replacement-templates.jsp
index 6bc2237c1e..0136c90090 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/javaScript/vuejs/replacement-templates.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/javaScript/vuejs/replacement-templates.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/javaScript/vuejs/replacement.js b/processManager/processManager-war/src/main/webapp/processManager/jsp/javaScript/vuejs/replacement.js
index f7143405b3..9e5bfd60e0 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/javaScript/vuejs/replacement.js
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/javaScript/vuejs/replacement.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 (function() {
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/javaScript/vuejs/replacement.service.js b/processManager/processManager-war/src/main/webapp/processManager/jsp/javaScript/vuejs/replacement.service.js
index 7794c30700..9aecc2ccbf 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/javaScript/vuejs/replacement.service.js
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/javaScript/vuejs/replacement.service.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 (function() {
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/listProcess.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/listProcess.jsp
index 2462c7e446..d31a43a886 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/listProcess.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/listProcess.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/listQuestions.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/listQuestions.jsp
index ef94efd6bf..56d8b45348 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/listQuestions.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/listQuestions.jsp
@@ -1,6 +1,6 @@
 <%@ page import="org.silverpeas.core.contribution.content.form.Form" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/multiWindowDetected.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/multiWindowDetected.jsp
index e67d275800..ab064aff06 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/multiWindowDetected.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/multiWindowDetected.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/replacements.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/replacements.jsp
index 5faec6cc33..be5e0d1523 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/replacements.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/replacements.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
 <%@ include file="checkProcessManager.jsp" %>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/viewHistory.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/viewHistory.jsp
index 37a22aeb35..c70fd4b73b 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/viewHistory.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/viewHistory.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/processManager/processManager-war/src/main/webapp/processManager/jsp/viewProcess.jsp b/processManager/processManager-war/src/main/webapp/processManager/jsp/viewProcess.jsp
index 392a715258..e1ad3b8847 100644
--- a/processManager/processManager-war/src/main/webapp/processManager/jsp/viewProcess.jsp
+++ b/processManager/processManager-war/src/main/webapp/processManager/jsp/viewProcess.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -120,6 +120,9 @@ function printProcess() {
     window.print();
 }
 </script>
+<%
+  form.displayScripts(out, context);
+%>
 </head>
 <body class="yui-skin-sam currentProfile_<%=currentRole%> page_process">
 <div id="<%=componentId%>">
diff --git a/projectManager/pom.xml b/projectManager/pom.xml
index 2dd9283a3b..a96bebb236 100644
--- a/projectManager/pom.xml
+++ b/projectManager/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/projectManager/projectManager-configuration/pom.xml b/projectManager/projectManager-configuration/pom.xml
index 502e56a74f..c0adf0121f 100644
--- a/projectManager/projectManager-configuration/pom.xml
+++ b/projectManager/projectManager-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>projectmanager</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.projectmanager</groupId>
diff --git a/projectManager/projectManager-configuration/src/main/config/migrations/modules/projectManager-migration.xml b/projectManager/projectManager-configuration/src/main/config/migrations/modules/projectManager-migration.xml
index 2ba2272885..d1cb49ecfd 100644
--- a/projectManager/projectManager-configuration/src/main/config/migrations/modules/projectManager-migration.xml
+++ b/projectManager/projectManager-configuration/src/main/config/migrations/modules/projectManager-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify it under the terms of the
   ~ GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -10,14 +10,14 @@
   ~ redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
   ~ applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
   ~ text describing the FLOSS exception, and it is also available here:
-  ~ "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  ~ "https://www.silverpeas.org/legal/floss_exception.html"
   ~
   ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
   ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   ~ Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License along with this program.
-  ~ If not, see <http://www.gnu.org/licenses/>.
+  ~ If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <migration module="projectManager"
diff --git a/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle.properties b/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle.properties
index ee14cdfa37..e47b6ec6d7 100644
--- a/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle.properties
+++ b/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 projectManager.Taches = Actions
 projectManager.Tache = Action
diff --git a/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle_de.properties b/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle_de.properties
index 2986b10bff..6d3c2fb0a4 100644
--- a/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle_de.properties
+++ b/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 projectManager.Taches = Tasks
 projectManager.Tache = Task
diff --git a/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle_en.properties b/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle_en.properties
index 613c24f70a..3057d17354 100644
--- a/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle_en.properties
+++ b/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 projectManager.Taches = Actions
 projectManager.Tache = Action
diff --git a/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle_fr.properties b/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle_fr.properties
index 43f29b556f..12f76de9f4 100644
--- a/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle_fr.properties
+++ b/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/multilang/projectManagerBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 projectManager.Taches = T\u00e2ches
 projectManager.Tache = T\u00e2che
diff --git a/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/settings/projectManagerIcons.properties b/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/settings/projectManagerIcons.properties
index 9b516a6afe..0301c467a7 100644
--- a/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/settings/projectManagerIcons.properties
+++ b/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/projectManager/settings/projectManagerIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 projectManager.mandatoryField = /util/icons/mandatoryField.gif
 projectManager.update = /util/icons/update.gif
diff --git a/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/util/logging/projectManagerLogging.properties b/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/util/logging/projectManagerLogging.properties
index 157b5449f9..3a0ba9c2b6 100644
--- a/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/util/logging/projectManagerLogging.properties
+++ b/projectManager/projectManager-configuration/src/main/config/properties/org/silverpeas/util/logging/projectManagerLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/projectManager/projectManager-configuration/src/main/config/xmlcomponents/projectManager.xml b/projectManager/projectManager-configuration/src/main/config/xmlcomponents/projectManager.xml
index 0c81d17672..13a981c93f 100644
--- a/projectManager/projectManager-configuration/src/main/config/xmlcomponents/projectManager.xml
+++ b/projectManager/projectManager-configuration/src/main/config/xmlcomponents/projectManager.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/projectManager/projectManager-library/pom.xml b/projectManager/projectManager-library/pom.xml
index 054c0f4e64..7c1d37fd01 100644
--- a/projectManager/projectManager-library/pom.xml
+++ b/projectManager/projectManager-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>projectmanager</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.projectmanager</groupId>
diff --git a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/ProjectManagerInstancePreDestruction.java b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/ProjectManagerInstancePreDestruction.java
index fa8eb9bb36..745fe39fe4 100644
--- a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/ProjectManagerInstancePreDestruction.java
+++ b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/ProjectManagerInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.projectmanager;
 
diff --git a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/ProjectManagerStatistics.java b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/ProjectManagerStatistics.java
index a83b833d2e..0082bd8172 100644
--- a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/ProjectManagerStatistics.java
+++ b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/ProjectManagerStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.projectmanager;
 
diff --git a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/Filtre.java b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/Filtre.java
index 4819e5fc67..900bee909e 100644
--- a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/Filtre.java
+++ b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/Filtre.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/HolidayDetail.java b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/HolidayDetail.java
index f8d5435be6..83f4a8f06e 100644
--- a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/HolidayDetail.java
+++ b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/HolidayDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.projectmanager.model;
diff --git a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/ProjectManagerCalendarDAO.java b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/ProjectManagerCalendarDAO.java
index 2de66586e7..d635514cf6 100644
--- a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/ProjectManagerCalendarDAO.java
+++ b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/ProjectManagerCalendarDAO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/ProjectManagerDAO.java b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/ProjectManagerDAO.java
index 512226b63e..e4ffb8588c 100644
--- a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/ProjectManagerDAO.java
+++ b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/ProjectManagerDAO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/ProjectManagerRuntimeException.java b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/ProjectManagerRuntimeException.java
index 20b24d1349..6d56bf0900 100644
--- a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/ProjectManagerRuntimeException.java
+++ b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/ProjectManagerRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.projectmanager.model;
diff --git a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/TaskDetail.java b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/TaskDetail.java
index e88d2bab1c..437727e7bc 100644
--- a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/TaskDetail.java
+++ b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/TaskDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.projectmanager.model;
 
diff --git a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/TaskPK.java b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/TaskPK.java
index 2c6e272eb2..450796c78a 100644
--- a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/TaskPK.java
+++ b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/TaskPK.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/TaskResourceDetail.java b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/TaskResourceDetail.java
index e1ace9e342..b904792131 100644
--- a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/TaskResourceDetail.java
+++ b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/model/TaskResourceDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.projectmanager.model;
diff --git a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/service/DefaultProjectManagerService.java b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/service/DefaultProjectManagerService.java
index 81f6560d18..ec821f6290 100644
--- a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/service/DefaultProjectManagerService.java
+++ b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/service/DefaultProjectManagerService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.projectmanager.service;
 
diff --git a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/service/ProjectManagerService.java b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/service/ProjectManagerService.java
index 1c413b5883..83c8f0e065 100644
--- a/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/service/ProjectManagerService.java
+++ b/projectManager/projectManager-library/src/main/java/org/silverpeas/components/projectmanager/service/ProjectManagerService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.projectmanager.service;
 
diff --git a/projectManager/projectManager-war/pom.xml b/projectManager/projectManager-war/pom.xml
index d0c0e1d336..f5d3061a98 100644
--- a/projectManager/projectManager-war/pom.xml
+++ b/projectManager/projectManager-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>projectmanager</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.projectmanager</groupId>
diff --git a/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/ProjectManagerIndexer.java b/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/ProjectManagerIndexer.java
index cb5c48d277..4db39d99be 100644
--- a/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/ProjectManagerIndexer.java
+++ b/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/ProjectManagerIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/control/ProjectManagerSessionController.java b/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/control/ProjectManagerSessionController.java
index 438a3c52a9..f08c1b9e8f 100644
--- a/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/control/ProjectManagerSessionController.java
+++ b/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/control/ProjectManagerSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.projectmanager.control;
 
diff --git a/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/servlets/AjaxProjectManagerServlet.java b/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/servlets/AjaxProjectManagerServlet.java
index 1294c62caa..efb4a616a7 100644
--- a/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/servlets/AjaxProjectManagerServlet.java
+++ b/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/servlets/AjaxProjectManagerServlet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.projectmanager.servlets;
 
diff --git a/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/servlets/ProjectManagerRequestRouter.java b/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/servlets/ProjectManagerRequestRouter.java
index b7c1c3d5aa..25646d0d7c 100644
--- a/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/servlets/ProjectManagerRequestRouter.java
+++ b/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/servlets/ProjectManagerRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.projectmanager.servlets;
 
diff --git a/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/vo/DayVO.java b/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/vo/DayVO.java
index 8e53bde7b7..0129ef1fa2 100644
--- a/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/vo/DayVO.java
+++ b/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/vo/DayVO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.projectmanager.vo;
 
diff --git a/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/vo/MonthVO.java b/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/vo/MonthVO.java
index b2ecba1d12..c1d62f3d56 100644
--- a/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/vo/MonthVO.java
+++ b/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/vo/MonthVO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.projectmanager.vo;
 
diff --git a/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/vo/WeekVO.java b/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/vo/WeekVO.java
index ee0b71ca7c..364b6c97f9 100644
--- a/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/vo/WeekVO.java
+++ b/projectManager/projectManager-war/src/main/java/org/silverpeas/components/projectmanager/vo/WeekVO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.projectmanager.vo;
 
diff --git a/projectManager/projectManager-war/src/main/webapp/WEB-INF/web.xml b/projectManager/projectManager-war/src/main/webapp/WEB-INF/web.xml
index a33c7d8117..0456fa7333 100644
--- a/projectManager/projectManager-war/src/main/webapp/WEB-INF/web.xml
+++ b/projectManager/projectManager-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/calendar.jsp b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/calendar.jsp
index 5e7d1e24a0..5b633c1bdf 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/calendar.jsp
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/calendar.jsp
@@ -1,6 +1,6 @@
 <%@ page import="org.silverpeas.core.util.MultiSilverpeasBundle" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/check.jsp b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/check.jsp
index 0678fb8fd9..ad6a03dbe9 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/check.jsp
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/css/gantt.css b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/css/gantt.css
index 6616739903..29cdd7f930 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/css/gantt.css
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/css/gantt.css
@@ -248,11 +248,6 @@ td.day { text-align:center; }
   float:none;
   }
 
-.ganttMois tbody tr td.lenght_oneDay div div {
-  top:  /*\**/1px\9;
-
-}
-
 .day_odd .lenght_oneDay div{
   background-color: #EBEBEB;
   border-top:1px solid #EBEBEB;
@@ -472,4 +467,4 @@ td.day { text-align:center; }
 }
 
 
-/*- [ Gantt END ] --------------------------- */
\ No newline at end of file
+/*- [ Gantt END ] --------------------------- */
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/gantt.jsp b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/gantt.jsp
index b9535e7714..7fa7dffc8b 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/gantt.jsp
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/gantt.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/gantt_legend.jsp b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/gantt_legend.jsp
index b1577969be..c7e9e7fd41 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/gantt_legend.jsp
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/gantt_legend.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/gantt_months.jsp b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/gantt_months.jsp
index f9aa940405..643b8f0a04 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/gantt_months.jsp
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/gantt_months.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/js/ajax_project.js b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/js/ajax_project.js
index b600b7231c..cdad83d018 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/js/ajax_project.js
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/js/ajax_project.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/portlet.jsp b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/portlet.jsp
index 45f96635b2..51098c75f5 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/portlet.jsp
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/portlet.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/projectDefinition.jsp b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/projectDefinition.jsp
index 257ec9fe80..13781a35c6 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/projectDefinition.jsp
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/projectDefinition.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/projectNotDefined.jsp b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/projectNotDefined.jsp
index 8bb6ce391f..538794e42b 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/projectNotDefined.jsp
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/projectNotDefined.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/projectView.jsp b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/projectView.jsp
index ac5d450677..12ef06aeae 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/projectView.jsp
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/projectView.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.util.WebEncodeHelper"%>
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/refreshFromUserSelect.jsp b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/refreshFromUserSelect.jsp
index cd51f11598..6b4db96283 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/refreshFromUserSelect.jsp
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/refreshFromUserSelect.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/taskAdd.jsp b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/taskAdd.jsp
index 6fc8ae7524..3945291b7a 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/taskAdd.jsp
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/taskAdd.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/taskUpdate.jsp b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/taskUpdate.jsp
index c8439d1e10..740758310d 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/taskUpdate.jsp
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/taskUpdate.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/taskView.jsp b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/taskView.jsp
index 4cb3548085..4724d25939 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/taskView.jsp
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/taskView.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.util.WebEncodeHelper"%>
diff --git a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/tasksList.jsp b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/tasksList.jsp
index 7faf709571..7deec7b40e 100644
--- a/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/tasksList.jsp
+++ b/projectManager/projectManager-war/src/main/webapp/projectManager/jsp/tasksList.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ page import="java.util.ArrayList" %>
 <%@ page import="java.util.Collections" %>
diff --git a/questionReply/pom.xml b/questionReply/pom.xml
index c6e7382528..eda9f18ac6 100644
--- a/questionReply/pom.xml
+++ b/questionReply/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/questionReply/questionReply-configuration/pom.xml b/questionReply/questionReply-configuration/pom.xml
index 5ebc62557e..ee18d3468e 100644
--- a/questionReply/questionReply-configuration/pom.xml
+++ b/questionReply/questionReply-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>questionreply</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.questionreply</groupId>
diff --git a/questionReply/questionReply-configuration/src/main/config/migrations/modules/questionReply-migration.xml b/questionReply/questionReply-configuration/src/main/config/migrations/modules/questionReply-migration.xml
index 7270e2af6f..d13862a69c 100644
--- a/questionReply/questionReply-configuration/src/main/config/migrations/modules/questionReply-migration.xml
+++ b/questionReply/questionReply-configuration/src/main/config/migrations/modules/questionReply-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify it under the terms of the
   ~ GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -10,14 +10,14 @@
   ~ redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
   ~ applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
   ~ text describing the FLOSS exception, and it is also available here:
-  ~ "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  ~ "https://www.silverpeas.org/legal/floss_exception.html"
   ~
   ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
   ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   ~ Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License along with this program.
-  ~ If not, see <http://www.gnu.org/licenses/>.
+  ~ If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <migration module="questionReply"
diff --git a/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle.properties b/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle.properties
index 2923225d6e..101988301b 100644
--- a/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle.properties
+++ b/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 questionReply.addQR = Ajouter une FAQ
 questionReply.addQ = Poser une question
diff --git a/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle_de.properties b/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle_de.properties
index 7a6c17a8b7..71ab1bb4cd 100644
--- a/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle_de.properties
+++ b/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 questionReply.addQR = Eine FAQ hinzuf\u00fcgen
diff --git a/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle_en.properties b/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle_en.properties
index d09cb70e85..fc6f4c7f20 100644
--- a/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle_en.properties
+++ b/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 questionReply.addQR = Add a FAQ
 questionReply.addQ = Ask a question
diff --git a/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle_fr.properties b/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle_fr.properties
index 25f21d0706..f746fbed55 100644
--- a/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle_fr.properties
+++ b/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/multilang/questionReplyBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 questionReply.addQR = Ajouter une FAQ
 questionReply.addQ = Poser une question
diff --git a/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/settings/questionReplyIcons.properties b/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/settings/questionReplyIcons.properties
index 9f321c1e5c..5f22012846 100644
--- a/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/settings/questionReplyIcons.properties
+++ b/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/questionReply/settings/questionReplyIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 questionReply.minicone = /util/icons/questionReply_RepPublik.gif
 questionReply.miniconeQuestion = /util/icons/question.gif
diff --git a/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/util/logging/QuestionReplyLogging.properties b/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/util/logging/QuestionReplyLogging.properties
index 44b968a8b3..0c59a54ef8 100644
--- a/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/util/logging/QuestionReplyLogging.properties
+++ b/questionReply/questionReply-configuration/src/main/config/properties/org/silverpeas/util/logging/QuestionReplyLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/questionReply/questionReply-configuration/src/main/config/resources/QuestionReply/ExportFAQ.css b/questionReply/questionReply-configuration/src/main/config/resources/QuestionReply/ExportFAQ.css
index fa6b644829..51dda92109 100644
--- a/questionReply/questionReply-configuration/src/main/config/resources/QuestionReply/ExportFAQ.css
+++ b/questionReply/questionReply-configuration/src/main/config/resources/QuestionReply/ExportFAQ.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*************************************
diff --git a/questionReply/questionReply-configuration/src/main/config/xmlcomponents/questionReply.xml b/questionReply/questionReply-configuration/src/main/config/xmlcomponents/questionReply.xml
index 298cc9fc03..981163e904 100644
--- a/questionReply/questionReply-configuration/src/main/config/xmlcomponents/questionReply.xml
+++ b/questionReply/questionReply-configuration/src/main/config/xmlcomponents/questionReply.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/questionReply/questionReply-library/pom.xml b/questionReply/questionReply-library/pom.xml
index 0727d8b347..e9d17059e9 100644
--- a/questionReply/questionReply-library/pom.xml
+++ b/questionReply/questionReply-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>questionreply</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.questionreply</groupId>
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/QuestionReplyException.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/QuestionReplyException.java
index 6dc96f2e3e..3bfc340f2b 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/QuestionReplyException.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/QuestionReplyException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.questionreply;
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/QuestionReplyInstancePreDestruction.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/QuestionReplyInstancePreDestruction.java
index b1a4e3fc7f..7e150733a0 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/QuestionReplyInstancePreDestruction.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/QuestionReplyInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply;
 
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/QuestionReplyStatistics.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/QuestionReplyStatistics.java
index c162d5f6e4..1fd85b1aa5 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/QuestionReplyStatistics.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/QuestionReplyStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply;
 
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/index/QuestionIndexer.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/index/QuestionIndexer.java
index 5adf59a7e7..14cb922c7b 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/index/QuestionIndexer.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/index/QuestionIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.index;
 
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Category.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Category.java
index 3c5ef08437..46773d378e 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Category.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Category.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.questionreply.model;
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Question.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Question.java
index 38bf2d30ea..a118e3e456 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Question.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Question.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.model;
 
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/QuestionDetail.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/QuestionDetail.java
index f166a0adc8..ab959df093 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/QuestionDetail.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/QuestionDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.questionreply.model;
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Recipient.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Recipient.java
index e4b12ba8c6..5f0e8ad247 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Recipient.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Recipient.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.questionreply.model;
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Reply.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Reply.java
index e16ac7a6a2..2d6a00f2c9 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Reply.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/model/Reply.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.model;
 
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionHeader.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionHeader.java
index 6043613d28..af25720001 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionHeader.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionHeader.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.service;
 
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionManager.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionManager.java
index ceda349e7c..f760bb55a4 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionManager.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.service;
 
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionManagerProvider.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionManagerProvider.java
index f72f48ce65..f9bcdc2543 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionManagerProvider.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionManagerProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.service;
 
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionRegexpComparator.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionRegexpComparator.java
index c088d2a034..03ca6b8cbf 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionRegexpComparator.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionRegexpComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionReplyContentManager.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionReplyContentManager.java
index a7a4a319f0..d673732c09 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionReplyContentManager.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/QuestionReplyContentManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.service;
 
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/SilverpeasQuestionManager.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/SilverpeasQuestionManager.java
index 6a6f95d66b..4112ff193b 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/SilverpeasQuestionManager.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/SilverpeasQuestionManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.service;
 
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/AbstractNotifier.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/AbstractNotifier.java
index 801578dd58..d8c1d309c2 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/AbstractNotifier.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/AbstractNotifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.service.notification;
 
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/AbstractReplyNotifier.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/AbstractReplyNotifier.java
index b0efaa98fa..1969eca2cd 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/AbstractReplyNotifier.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/AbstractReplyNotifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.questionreply.service.notification;
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/NotificationData.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/NotificationData.java
index 7b0cce833e..2220b7f05a 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/NotificationData.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/NotificationData.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.service.notification;
 
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/QuestionNotifier.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/QuestionNotifier.java
index c5ae368268..d0b7a3f9ea 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/QuestionNotifier.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/QuestionNotifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.service.notification;
 
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/ReplyNotifier.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/ReplyNotifier.java
index 86d4da4ee4..9fe66bfa06 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/ReplyNotifier.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/ReplyNotifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.service.notification;
 
diff --git a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/SubscriptionNotifier.java b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/SubscriptionNotifier.java
index e3a377459f..af9bf20fe6 100644
--- a/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/SubscriptionNotifier.java
+++ b/questionReply/questionReply-library/src/main/java/org/silverpeas/components/questionreply/service/notification/SubscriptionNotifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.service.notification;
 
diff --git a/questionReply/questionReply-library/src/test/java/org/silverpeas/components/questionreply/service/QuestionRegexpComparatorTest.java b/questionReply/questionReply-library/src/test/java/org/silverpeas/components/questionreply/service/QuestionRegexpComparatorTest.java
index 6dedc148b5..c9781a3cdc 100644
--- a/questionReply/questionReply-library/src/test/java/org/silverpeas/components/questionreply/service/QuestionRegexpComparatorTest.java
+++ b/questionReply/questionReply-library/src/test/java/org/silverpeas/components/questionreply/service/QuestionRegexpComparatorTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.service;
 
diff --git a/questionReply/questionReply-library/src/test/java/org/silverpeas/components/questionreply/service/SilverpeasQuestionManagerReplayDaoTest.java b/questionReply/questionReply-library/src/test/java/org/silverpeas/components/questionreply/service/SilverpeasQuestionManagerReplayDaoTest.java
index e16681f126..76b357ab92 100644
--- a/questionReply/questionReply-library/src/test/java/org/silverpeas/components/questionreply/service/SilverpeasQuestionManagerReplayDaoTest.java
+++ b/questionReply/questionReply-library/src/test/java/org/silverpeas/components/questionreply/service/SilverpeasQuestionManagerReplayDaoTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.questionreply.service;
diff --git a/questionReply/questionReply-library/src/test/resources/META-INF/beans.xml b/questionReply/questionReply-library/src/test/resources/META-INF/beans.xml
index 07452d79fe..96c3327938 100644
--- a/questionReply/questionReply-library/src/test/resources/META-INF/beans.xml
+++ b/questionReply/questionReply-library/src/test/resources/META-INF/beans.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <beans
diff --git a/questionReply/questionReply-library/src/test/resources/META-INF/persistence.xml b/questionReply/questionReply-library/src/test/resources/META-INF/persistence.xml
index 53a018231a..971ede8a0e 100644
--- a/questionReply/questionReply-library/src/test/resources/META-INF/persistence.xml
+++ b/questionReply/questionReply-library/src/test/resources/META-INF/persistence.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <persistence xmlns="http://xmlns.jcp.org/xml/ns/persistence"
diff --git a/questionReply/questionReply-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer b/questionReply/questionReply-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
index fc51b7e4fd..02b5b225ce 100644
--- a/questionReply/questionReply-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
+++ b/questionReply/questionReply-library/src/test/resources/META-INF/services/org.silverpeas.core.util.BeanContainer
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception. You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 org.silverpeas.core.test.TestBeanContainer
\ No newline at end of file
diff --git a/questionReply/questionReply-war/pom.xml b/questionReply/questionReply-war/pom.xml
index e49adde6dc..b23d81d4ba 100644
--- a/questionReply/questionReply-war/pom.xml
+++ b/questionReply/questionReply-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>questionreply</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.questionreply</groupId>
diff --git a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/QuestionReplyIndexer.java b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/QuestionReplyIndexer.java
index 30d19d42c9..b0cabd693d 100644
--- a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/QuestionReplyIndexer.java
+++ b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/QuestionReplyIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply;
 
diff --git a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/control/QuestionReplyExport.java b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/control/QuestionReplyExport.java
index c22480f3dc..8db1014940 100644
--- a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/control/QuestionReplyExport.java
+++ b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/control/QuestionReplyExport.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.control;
 
diff --git a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/control/QuestionReplySessionController.java b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/control/QuestionReplySessionController.java
index 97e09e3867..c8da2d4560 100644
--- a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/control/QuestionReplySessionController.java
+++ b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/control/QuestionReplySessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.control;
 
diff --git a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/servlets/GoToQuestion.java b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/servlets/GoToQuestion.java
index a792835cfb..357453b9c4 100644
--- a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/servlets/GoToQuestion.java
+++ b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/servlets/GoToQuestion.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.servlets;
 
diff --git a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/servlets/QuestionReplyRequestRouter.java b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/servlets/QuestionReplyRequestRouter.java
index 5a19b2d1ea..0cfae6baf8 100644
--- a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/servlets/QuestionReplyRequestRouter.java
+++ b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/servlets/QuestionReplyRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.servlets;
 
diff --git a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/AuthorEntity.java b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/AuthorEntity.java
index ab323bba42..2787f4c092 100644
--- a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/AuthorEntity.java
+++ b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/AuthorEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.web;
 
diff --git a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/QuestionEntity.java b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/QuestionEntity.java
index 136a870d93..c8ac5280f0 100644
--- a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/QuestionEntity.java
+++ b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/QuestionEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.web;
 
diff --git a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/QuestionReplyBaseWebService.java b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/QuestionReplyBaseWebService.java
index 9838ed80b0..520fa7129a 100644
--- a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/QuestionReplyBaseWebService.java
+++ b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/QuestionReplyBaseWebService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.web;
 
diff --git a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/QuestionResource.java b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/QuestionResource.java
index 85e0213e25..c0e16e890a 100644
--- a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/QuestionResource.java
+++ b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/QuestionResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.web;
 
diff --git a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/ReplyEntity.java b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/ReplyEntity.java
index 9f97ca7066..8ce31de56b 100644
--- a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/ReplyEntity.java
+++ b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/ReplyEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.web;
 
diff --git a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/ReplyResource.java b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/ReplyResource.java
index e425adb274..2522903208 100644
--- a/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/ReplyResource.java
+++ b/questionReply/questionReply-war/src/main/java/org/silverpeas/components/questionreply/web/ReplyResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.questionreply.web;
 
diff --git a/questionReply/questionReply-war/src/main/webapp/WEB-INF/web.xml b/questionReply/questionReply-war/src/main/webapp/WEB-INF/web.xml
index 16a660557b..b9bc8a2979 100644
--- a/questionReply/questionReply-war/src/main/webapp/WEB-INF/web.xml
+++ b/questionReply/questionReply-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/addQ.jsp b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/addQ.jsp
index ffe2ff9880..9ab88fe320 100644
--- a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/addQ.jsp
+++ b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/addQ.jsp
@@ -1,6 +1,6 @@
 <%@ page import="org.silverpeas.core.node.model.NodeDetail" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/addQR.jsp b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/addQR.jsp
index 3ca46fe1f4..37906ca4ed 100644
--- a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/addQR.jsp
+++ b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/addQR.jsp
@@ -1,6 +1,6 @@
 <%@ page import="org.silverpeas.core.node.model.NodeDetail" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" %>
diff --git a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/addR.jsp b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/addR.jsp
index 134058fed2..e593a1112d 100644
--- a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/addR.jsp
+++ b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/addR.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" %>
diff --git a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/attachmentManager.jsp b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/attachmentManager.jsp
index 0bad256d96..0ae63bacdd 100644
--- a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/attachmentManager.jsp
+++ b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/attachmentManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
diff --git a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/checkQuestionReply.jsp b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/checkQuestionReply.jsp
index 3bb3585c40..38e6519748 100644
--- a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/checkQuestionReply.jsp
+++ b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/checkQuestionReply.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/downloadZip.jsp b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/downloadZip.jsp
index de3cfca974..19c9478c0d 100644
--- a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/downloadZip.jsp
+++ b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/downloadZip.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/listQuestionsDHTML.jsp b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/listQuestionsDHTML.jsp
index dedbea213d..6bca996995 100644
--- a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/listQuestionsDHTML.jsp
+++ b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/listQuestionsDHTML.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
@@ -296,6 +296,7 @@ $(document).ready(function() {
       actionDiv.append($('<input>').attr('name', 'status').attr('value', questionToBeDisplayed.status).attr('type', 'hidden'));
       questionDiv.append(actionDiv);
     </c:if>
+    applyTokenSecurity(li);
     return li;
   }
 
@@ -340,6 +341,7 @@ $(document).ready(function() {
     answerDateBlock = $('<span>').addClass('answerDate').text(' - ' + answer.creationDate);
     answerAuthorBlock.append(answerDateBlock);
     answerBlock.append(answerAuthorBlock);
+    applyTokenSecurity(answerBlock);
     return answerBlock;
   }
 
@@ -478,7 +480,7 @@ function deleteConfirmR(replyId, questionId) {
 function confirmDeleteCategory(categoryId) {
   var label = "<fmt:message key="questionReply.confirmDeleteCategory" />";
   jQuery.popup.confirm(label, function() {
-		window.location.href=("DeleteCategory?CategoryId=" + categoryId + "");
+		sp.formRequest("DeleteCategory?CategoryId=" + categoryId + "").byPostMethod().submit();
 	});
 }
 
diff --git a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/portlet.jsp b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/portlet.jsp
index 73c530b216..27c4a421d5 100644
--- a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/portlet.jsp
+++ b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/portlet.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
diff --git a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/styleSheets/questionReply.css b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/styleSheets/questionReply.css
index c45e0b6633..5a0a153415 100644
--- a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/styleSheets/questionReply.css
+++ b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/styleSheets/questionReply.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 .hautFrame form > ul,
diff --git a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/updateQ.jsp b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/updateQ.jsp
index c26591af40..573d611ecf 100644
--- a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/updateQ.jsp
+++ b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/updateQ.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/updateR.jsp b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/updateR.jsp
index a92fe06ffe..b8e001c59d 100644
--- a/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/updateR.jsp
+++ b/questionReply/questionReply-war/src/main/webapp/questionReply/jsp/updateR.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" %>
diff --git a/quickinfo/pom.xml b/quickinfo/pom.xml
index dee11cef5b..7b8c4304c5 100644
--- a/quickinfo/pom.xml
+++ b/quickinfo/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/quickinfo/quickinfo-configuration/pom.xml b/quickinfo/quickinfo-configuration/pom.xml
index c9dcb69180..574cdd4861 100644
--- a/quickinfo/quickinfo-configuration/pom.xml
+++ b/quickinfo/quickinfo-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>quickinfo</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.quickinfo</groupId>
diff --git a/quickinfo/quickinfo-configuration/src/main/config/migrations/modules/quickinfo-migration.xml b/quickinfo/quickinfo-configuration/src/main/config/migrations/modules/quickinfo-migration.xml
index a1b6f27b68..869afeac10 100644
--- a/quickinfo/quickinfo-configuration/src/main/config/migrations/modules/quickinfo-migration.xml
+++ b/quickinfo/quickinfo-configuration/src/main/config/migrations/modules/quickinfo-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify it under the terms of the
   ~ GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -10,14 +10,14 @@
   ~ redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
   ~ applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
   ~ text describing the FLOSS exception, and it is also available here:
-  ~ "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  ~ "https://www.silverpeas.org/legal/floss_exception.html"
   ~
   ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
   ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   ~ Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License along with this program.
-  ~ If not, see <http://www.gnu.org/licenses/>.
+  ~ If not, see <https://www.gnu.org/licenses/>.
   -->
 <migration module="quickinfo"
            xmlns="http://silverpeas.org/xml/ns/migration"
diff --git a/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo.properties b/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo.properties
index 4e6bee6497..16baf53cf0 100644
--- a/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo.properties
+++ b/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 # actions
diff --git a/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo_de.properties b/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo_de.properties
index b1c74689a6..756dc9e465 100644
--- a/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo_de.properties
+++ b/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 # actions
diff --git a/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo_en.properties b/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo_en.properties
index 61f9f3edc3..f1bdfd8e55 100644
--- a/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo_en.properties
+++ b/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 # actions
diff --git a/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo_fr.properties b/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo_fr.properties
index 5684f427c0..b7b655af67 100644
--- a/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo_fr.properties
+++ b/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/multilang/quickinfo_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 # actions
diff --git a/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/settings/quickInfoSettings.properties b/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/settings/quickInfoSettings.properties
index 1753aa3091..2d84c62d7e 100644
--- a/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/settings/quickInfoSettings.properties
+++ b/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/quickinfo/settings/quickInfoSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 mandatoryFieldIcon = ../../util/icons/mandatoryField.gif
diff --git a/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/util/logging/quickinfoLogging.properties b/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/util/logging/quickinfoLogging.properties
index b04a213fcd..2bdb5d8973 100644
--- a/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/util/logging/quickinfoLogging.properties
+++ b/quickinfo/quickinfo-configuration/src/main/config/properties/org/silverpeas/util/logging/quickinfoLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/quickinfo/quickinfo-configuration/src/main/config/xmlcomponents/quickinfo.xml b/quickinfo/quickinfo-configuration/src/main/config/xmlcomponents/quickinfo.xml
index 408c7e2a86..a3066c8324 100644
--- a/quickinfo/quickinfo-configuration/src/main/config/xmlcomponents/quickinfo.xml
+++ b/quickinfo/quickinfo-configuration/src/main/config/xmlcomponents/quickinfo.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
@@ -172,9 +172,19 @@
       <type>checkbox</type>
       <updatable>always</updatable>
       <help>
-        <message lang="fr">Les brèves créées au sein de cette instance pourront être classées sur le Plan de Classement.</message>
-        <message lang="en">News created in this application will be classified on the classification scheme.</message>
-        <message lang="de">Nachrichten können auf dem KP klassifiziert werden</message>
+        <message lang="fr">Les actualités créées au sein de cette instance pourront être classées
+          sur le Plan de Classement.Si une actualité est classée lorsque le paramètre est désactivé,
+          elle n'est pas déclassée. Elle le sera lors de sa mise à jour.
+        </message>
+        <message lang="en">News created within this instance can be ranked on the Classification
+          Plan. If a news is ranked when the parameter is deactivated, it is not unclassified. It
+          will be unclassified when it is updated.
+        </message>
+        <message lang="de">Die in dieser Instanz erstellten Nachrichten können im
+          Klassifizierungsplan eingestuft werden. Wenn eine Nachricht bei Deaktivierung des
+          Parameters eingestuft ist, ist sie nicht unklassifiziert. Sie wird nicht klassifiziert,
+          wenn sie aktualisiert wird.
+        </message>
       </help>
     </parameter>
     <parameter>
diff --git a/quickinfo/quickinfo-library/pom.xml b/quickinfo/quickinfo-library/pom.xml
index c642ead347..813968424c 100644
--- a/quickinfo/quickinfo-library/pom.xml
+++ b/quickinfo/quickinfo-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>quickinfo</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.quickinfo</groupId>
diff --git a/quickinfo/quickinfo-library/src/integration-test/resources/arquillian.xml b/quickinfo/quickinfo-library/src/integration-test/resources/arquillian.xml
index c14046f2bb..bc5b073b7d 100644
--- a/quickinfo/quickinfo-library/src/integration-test/resources/arquillian.xml
+++ b/quickinfo/quickinfo-library/src/integration-test/resources/arquillian.xml
@@ -1,6 +1,6 @@
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <arquillian xmlns="http://jboss.org/schema/arquillian"
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/NewsByStatus.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/NewsByStatus.java
index d10a182514..7c4f3dfbad 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/NewsByStatus.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/NewsByStatus.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickInfoComponentSettings.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickInfoComponentSettings.java
index 0a61939d1a..0ed818b7ee 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickInfoComponentSettings.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickInfoComponentSettings.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickInfoGlobalSilverpeasContentProcessor.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickInfoGlobalSilverpeasContentProcessor.java
index c97af75de5..a0816fe754 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickInfoGlobalSilverpeasContentProcessor.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickInfoGlobalSilverpeasContentProcessor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quickinfo;
 
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickInfoUserAuthenticationListener.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickInfoUserAuthenticationListener.java
index b7bd39439f..9888074baa 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickInfoUserAuthenticationListener.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickInfoUserAuthenticationListener.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickinfoInstancePreDestruction.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickinfoInstancePreDestruction.java
index 52a03ca1e1..15d376125d 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickinfoInstancePreDestruction.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/QuickinfoInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quickinfo;
 
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/DefaultQuickInfoService.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/DefaultQuickInfoService.java
index 65287326d3..b504f5544d 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/DefaultQuickInfoService.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/DefaultQuickInfoService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.model;
@@ -52,8 +52,12 @@
 import org.silverpeas.core.io.upload.UploadedFile;
 import org.silverpeas.core.notification.system.ResourceEvent;
 import org.silverpeas.core.notification.user.client.constant.NotifAction;
+import org.silverpeas.core.pdc.pdc.model.ClassifyPosition;
 import org.silverpeas.core.pdc.pdc.model.PdcClassification;
+import org.silverpeas.core.pdc.pdc.model.PdcException;
 import org.silverpeas.core.pdc.pdc.model.PdcPosition;
+import org.silverpeas.core.pdc.pdc.service.PdcManager;
+import org.silverpeas.core.pdc.subscription.service.PdcSubscriptionManager;
 import org.silverpeas.core.persistence.Transaction;
 import org.silverpeas.core.persistence.jdbc.DBUtil;
 import org.silverpeas.core.reminder.Reminder;
@@ -82,7 +86,6 @@
 import java.util.stream.Collectors;
 import java.util.stream.Stream;
 
-import static java.util.Arrays.asList;
 import static java.util.Collections.singletonList;
 import static java.util.function.Predicate.not;
 import static org.silverpeas.components.quickinfo.notification.QuickInfoDelayedVisibilityUserNotificationReminder.QUICKINFO_DELAYED_VISIBILITY_USER_NOTIFICATION;
@@ -101,6 +104,10 @@ public class DefaultQuickInfoService implements QuickInfoService {
   private QuickInfoContentManager quickInfoContentManager;
   @Inject
   private NewsEventNotifier notifier;
+  @Inject
+  private PdcManager pdcManager;
+  @Inject
+  private PdcSubscriptionManager pdcSubscriptionManager;
 
   @Override
   public Optional<News> getContributionById(ContributionIdentifier contributionId) {
@@ -393,6 +400,22 @@ private void sendSubscriptionsNotification(final News news, final NotifAction no
     if (!news.isDraft()) {
       if (news.isVisible()) {
         new QuickInfoSubscriptionUserNotification(news, notifAction).build().send();
+        // send notification if PDC subscription
+        try {
+          final PublicationPK pubPK = news.getPublication().getPK();
+          int silverObjectId = quickInfoContentManager.getSilverContentId(pubPK.getId(), pubPK.getInstanceId());
+          List<ClassifyPosition> positions = pdcManager.getPositions(silverObjectId, pubPK
+              .getInstanceId());
+          if (positions != null) {
+            for (ClassifyPosition position : positions) {
+              pdcSubscriptionManager.checkSubscriptions(position.getValues(), pubPK
+                  .getInstanceId(), silverObjectId);
+            }
+          }
+        } catch (PdcException e) {
+          SilverLogger.getLogger(this)
+              .error("PdC subscriber notification failure", e);
+        }
       } else {
         QuickInfoDelayedVisibilityUserNotificationReminder.get().setAbout(news);
       }
@@ -405,10 +428,10 @@ private void sendSubscriptionsNotification(final News news, final NotifAction no
    * @param pdcPositions the string json positions
    */
   private void classifyQuickInfo(PublicationDetail publi, List<PdcPosition> pdcPositions) {
-    if (pdcPositions != null && !pdcPositions.isEmpty()) {
+    if (pdcPositions != null) {
       PdcClassification classification =
           aPdcClassificationOfContent(publi).withPositions(pdcPositions);
-      classification.classifyContent(publi);
+      classification.classifyContentOrClearClassificationIfEmpty(publi, false);
     }
   }
 
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/News.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/News.java
index b06d740138..7bf9ee3ae8 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/News.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/News.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.model;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/NewsModel.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/NewsModel.java
index 88cc77d430..c6dc52cbbd 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/NewsModel.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/NewsModel.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.model;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/NewsPK.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/NewsPK.java
index 9a0f046ef3..915542faa2 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/NewsPK.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/NewsPK.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quickinfo.model;
 
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/QuickInfoService.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/QuickInfoService.java
index cd09456673..51b69e9cb6 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/QuickInfoService.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/QuickInfoService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.model;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/QuickInfoServiceProvider.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/QuickInfoServiceProvider.java
index 2be66b4db3..b2b6783c37 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/QuickInfoServiceProvider.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/model/QuickInfoServiceProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.model;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/AbstractNewsUserNotification.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/AbstractNewsUserNotification.java
index 28e0cd36be..d2ad248a21 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/AbstractNewsUserNotification.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/AbstractNewsUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.notification;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/AbstractQuickInfoUserNotification.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/AbstractQuickInfoUserNotification.java
index f161509029..570803b17b 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/AbstractQuickInfoUserNotification.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/AbstractQuickInfoUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.notification;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/NewsEvent.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/NewsEvent.java
index 4fbdb0c740..0b50e13f32 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/NewsEvent.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/NewsEvent.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quickinfo.notification;
 
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/NewsEventNotifier.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/NewsEventNotifier.java
index 7026f9cfdb..341304c35c 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/NewsEventNotifier.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/NewsEventNotifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quickinfo.notification;
 
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/NewsManualUserNotification.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/NewsManualUserNotification.java
index 4c7095b976..f7ffffb6df 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/NewsManualUserNotification.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/NewsManualUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quickinfo.notification;
 
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickInfoDelayedVisibilityUserNotificationReminder.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickInfoDelayedVisibilityUserNotificationReminder.java
index 2cc3661832..ef23b71b0b 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickInfoDelayedVisibilityUserNotificationReminder.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickInfoDelayedVisibilityUserNotificationReminder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.notification;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickInfoDelayedVisibilityUserNotificationReminderInitializer.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickInfoDelayedVisibilityUserNotificationReminderInitializer.java
index ce2696e277..73423b6e61 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickInfoDelayedVisibilityUserNotificationReminderInitializer.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickInfoDelayedVisibilityUserNotificationReminderInitializer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.notification;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickInfoSubscriptionUserNotification.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickInfoSubscriptionUserNotification.java
index 78d09f4659..76189b9d1b 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickInfoSubscriptionUserNotification.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickInfoSubscriptionUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.notification;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickinfoInstanceManualUserNotification.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickinfoInstanceManualUserNotification.java
index 9c1ee7602e..149f8e6664 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickinfoInstanceManualUserNotification.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/notification/QuickinfoInstanceManualUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.notification;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/repository/NewsRepository.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/repository/NewsRepository.java
index 454d371a53..a39bfbf846 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/repository/NewsRepository.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/repository/NewsRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.repository;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/service/QuickInfoContentManager.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/service/QuickInfoContentManager.java
index e09dc7cd74..e57cfa1b6a 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/service/QuickInfoContentManager.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/service/QuickInfoContentManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.service;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/service/QuickInfoDateComparatorDesc.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/service/QuickInfoDateComparatorDesc.java
index 42ec570745..3e0d719ed9 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/service/QuickInfoDateComparatorDesc.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/service/QuickInfoDateComparatorDesc.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.service;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/service/QuickinfoStatistics.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/service/QuickinfoStatistics.java
index 12b7612c55..c80dc4571d 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/service/QuickinfoStatistics.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/service/QuickinfoStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.service;
diff --git a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/socialnetwork/SocialQuickInfoComment.java b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/socialnetwork/SocialQuickInfoComment.java
index 86596bb711..327ccffd86 100644
--- a/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/socialnetwork/SocialQuickInfoComment.java
+++ b/quickinfo/quickinfo-library/src/main/java/org/silverpeas/components/quickinfo/socialnetwork/SocialQuickInfoComment.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo.socialnetwork;
diff --git a/quickinfo/quickinfo-war/pom.xml b/quickinfo/quickinfo-war/pom.xml
index a5e7658be5..81dde11ac7 100644
--- a/quickinfo/quickinfo-war/pom.xml
+++ b/quickinfo/quickinfo-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>quickinfo</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.quickinfo</groupId>
diff --git a/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/QuickinfoIndexer.java b/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/QuickinfoIndexer.java
index d999151a06..31657f9db0 100644
--- a/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/QuickinfoIndexer.java
+++ b/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/QuickinfoIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quickinfo;
diff --git a/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/control/QuickInfoSessionController.java b/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/control/QuickInfoSessionController.java
index 518be71c52..596865634f 100644
--- a/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/control/QuickInfoSessionController.java
+++ b/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/control/QuickInfoSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quickinfo.control;
 
@@ -47,7 +47,9 @@
 
 import java.util.Collection;
 import java.util.List;
+import java.util.Objects;
 
+import static java.util.Optional.ofNullable;
 import static org.silverpeas.core.cache.service.VolatileIdentifierProvider.newVolatileIntegerIdentifierOn;
 
 /**
@@ -231,23 +233,24 @@ public void submitNewsOnHomepage(String id) {
   }
 
   /**
-   * Classify the info letter publication on the PdC only if the positions parameter is filled
-   * @param positions the string json positions
+   * Classify the info letter publication on the PdC. If the position parameter is filled it
+   * means that the content must be unclassified.
+   * @param positions the string json positions.
    */
   private List<PdcPosition> getPositionsFromJSON(String positions) {
-    List<PdcPosition> pdcPositions = null;
-    if (StringUtil.isDefined(positions)) {
-      PdcClassificationEntity qiClassification = null;
-      try {
-        qiClassification = PdcClassificationEntity.fromJSON(positions);
-      } catch (DecodingException e) {
-        SilverLogger.getLogger(this).error(e);
-      }
-      if (qiClassification != null && !qiClassification.isUndefined()) {
-        pdcPositions = qiClassification.getPdcPositions();
-      }
-    }
-    return pdcPositions;
+    return ofNullable(positions)
+        .filter(StringUtil::isDefined)
+        .map(p -> {
+          try {
+            return PdcClassificationEntity.fromJSON(positions);
+          } catch (DecodingException e) {
+            SilverLogger.getLogger(this).error(e);
+          }
+          return null;
+        })
+        .filter(Objects::nonNull)
+        .orElseGet(PdcClassificationEntity::undefinedClassification)
+        .getPdcPositions();
   }
 
   private void addVisit(News news) {
diff --git a/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/portlets/QuickInfosPortlet.java b/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/portlets/QuickInfosPortlet.java
index d38cd8fee4..d0084b0497 100644
--- a/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/portlets/QuickInfosPortlet.java
+++ b/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/portlets/QuickInfosPortlet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quickinfo.portlets;
 
diff --git a/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/servlets/QuickInfoRequestRouter.java b/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/servlets/QuickInfoRequestRouter.java
index 124bbb2ed2..0fcc8bc167 100644
--- a/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/servlets/QuickInfoRequestRouter.java
+++ b/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/servlets/QuickInfoRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quickinfo.servlets;
 
diff --git a/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/web/NewsEntity.java b/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/web/NewsEntity.java
index 83423f2e8f..bd39d24249 100644
--- a/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/web/NewsEntity.java
+++ b/quickinfo/quickinfo-war/src/main/java/org/silverpeas/components/quickinfo/web/NewsEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quickinfo.web;
 
diff --git a/quickinfo/quickinfo-war/src/main/webapp/WEB-INF/tags/silverpeas/quickinfo/portletNews.tag b/quickinfo/quickinfo-war/src/main/webapp/WEB-INF/tags/silverpeas/quickinfo/portletNews.tag
index 4801c96317..5cd03bbf6a 100644
--- a/quickinfo/quickinfo-war/src/main/webapp/WEB-INF/tags/silverpeas/quickinfo/portletNews.tag
+++ b/quickinfo/quickinfo-war/src/main/webapp/WEB-INF/tags/silverpeas/quickinfo/portletNews.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
   
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
   
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/quickinfo/quickinfo-war/src/main/webapp/WEB-INF/web.xml b/quickinfo/quickinfo-war/src/main/webapp/WEB-INF/web.xml
index 545b8f39e6..7c076c6029 100644
--- a/quickinfo/quickinfo-war/src/main/webapp/WEB-INF/web.xml
+++ b/quickinfo/quickinfo-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/quickinfo/quickinfo-war/src/main/webapp/portlets/jsp/quickInfos/edit.jsp b/quickinfo/quickinfo-war/src/main/webapp/portlets/jsp/quickInfos/edit.jsp
index 3e6fa88ac3..cd6718c6b1 100644
--- a/quickinfo/quickinfo-war/src/main/webapp/portlets/jsp/quickInfos/edit.jsp
+++ b/quickinfo/quickinfo-war/src/main/webapp/portlets/jsp/quickInfos/edit.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/quickinfo/quickinfo-war/src/main/webapp/portlets/jsp/quickInfos/help.jsp b/quickinfo/quickinfo-war/src/main/webapp/portlets/jsp/quickInfos/help.jsp
index de2cb5c5fd..2d09817621 100644
--- a/quickinfo/quickinfo-war/src/main/webapp/portlets/jsp/quickInfos/help.jsp
+++ b/quickinfo/quickinfo-war/src/main/webapp/portlets/jsp/quickInfos/help.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/quickinfo/quickinfo-war/src/main/webapp/portlets/jsp/quickInfos/portlet.jsp b/quickinfo/quickinfo-war/src/main/webapp/portlets/jsp/quickInfos/portlet.jsp
index ebb70b02ea..8367a39f19 100644
--- a/quickinfo/quickinfo-war/src/main/webapp/portlets/jsp/quickInfos/portlet.jsp
+++ b/quickinfo/quickinfo-war/src/main/webapp/portlets/jsp/quickInfos/portlet.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/blockingNews.jsp b/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/blockingNews.jsp
index c234eff112..f9bdbbd3f9 100644
--- a/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/blockingNews.jsp
+++ b/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/blockingNews.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/checkQuickInfo.jsp b/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/checkQuickInfo.jsp
index 64e21cf35f..ddb44f94f8 100644
--- a/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/checkQuickInfo.jsp
+++ b/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/checkQuickInfo.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/home.jsp b/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/home.jsp
index 7788265d59..f3440793ea 100644
--- a/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/home.jsp
+++ b/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/home.jsp
@@ -1,6 +1,6 @@
 <%@ page import="org.silverpeas.core.web.selection.BasketSelectionUI" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -218,12 +218,15 @@ function putNewsInBasket(contributionId) {
 						</c:if>
 					</c:if>
 				</span>
-        <c:if test="${contributor}">
+        <c:set var="putIntoBasketSnippet" value='<%=BasketSelectionUI.getPutIntoBasketSelectionHtmlSnippet("@callback@", language)%>'/>
+        <c:set var="putIntoBasketSnippet">${putIntoBasketSnippet.replace('@callback@', 'putNewsInBasket("'.concat(news.identifier.asString()).concat('")'))}</c:set>
+        <c:if test="${not empty putIntoBasketSnippet or contributor}">
           <div class="operation actionShownOnMouseOver">
-            <c:set var="putIntoBasketSnippet" value='<%=BasketSelectionUI.getPutIntoBasketSelectionHtmlSnippet("@callback@", language)%>'/>
-            ${putIntoBasketSnippet.replace('@callback@', 'putNewsInBasket("'.concat(news.identifier.asString()).concat('")'))}
-            <a title="<fmt:message key="GML.modify"/>" href="Edit?Id=${news.id}"><img border="0" title="<fmt:message key="GML.modify"/>" alt="<fmt:message key="GML.modify"/>" src="/silverpeas/util/icons/update.gif" /></a>
-            <a title="<fmt:message key="GML.delete"/>" href="javascript:onclick=confirmDelete('${news.id}', '${news.componentInstanceId}', '${deleteConfirmMsg}', onDelete)"><img border="0" title="<fmt:message key="GML.delete"/>" alt="<fmt:message key="GML.delete"/>" src="/silverpeas/util/icons/delete.gif" /></a>
+            ${putIntoBasketSnippet}
+            <c:if test="${contributor}">
+              <a title="<fmt:message key="GML.modify"/>" href="Edit?Id=${news.id}"><img border="0" title="<fmt:message key="GML.modify"/>" alt="<fmt:message key="GML.modify"/>" src="/silverpeas/util/icons/update.gif" /></a>
+              <a title="<fmt:message key="GML.delete"/>" href="javascript:onclick=confirmDelete('${news.id}', '${news.componentInstanceId}', '${deleteConfirmMsg}', onDelete)"><img border="0" title="<fmt:message key="GML.delete"/>" alt="<fmt:message key="GML.delete"/>" src="/silverpeas/util/icons/delete.gif" /></a>
+            </c:if>
           </div>
         </c:if>
       </div>
diff --git a/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/news.jsp b/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/news.jsp
index a6550b91a5..419c48abd3 100644
--- a/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/news.jsp
+++ b/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/news.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.components.quickinfo.model.News"%>
diff --git a/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/quickInfoEdit.jsp b/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/quickInfoEdit.jsp
index 51e35a1645..7b107c039f 100644
--- a/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/quickInfoEdit.jsp
+++ b/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/quickInfoEdit.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.io.media.image.thumbnail.model.ThumbnailDetail"%>
@@ -158,9 +158,7 @@ function isCorrectForm() {
 function saveNews() {
 	if (isCorrectForm()) {
     sp.editor.wysiwyg.lastBackupManager.clear();
-  		<c:if test="${empty curQuickInfo.taxonomyPositions}">
-    		<view:pdcPositions setIn="document.newsForm.Positions.value"/>;
-   		</c:if>
+      <view:pdcPositions setIn="document.newsForm.Positions.value"/>;
    		$("#newsForm").submit();
 	}
 }
@@ -168,9 +166,7 @@ function saveNews() {
 function publish() {
   if (isCorrectForm()) {
     sp.editor.wysiwyg.lastBackupManager.clear();
-	  <c:if test="${empty curQuickInfo.taxonomyPositions}">
-	  	<view:pdcPositions setIn="document.newsForm.Positions.value"/>;
-	  </c:if>
+    <view:pdcPositions setIn="document.newsForm.Positions.value"/>;
 	  $("#newsForm").attr("action", "SaveAndPublish");
 	  $("#newsForm").submit();
   }
@@ -314,7 +310,7 @@ $(document).ready(function() {
 	<view:pdcNewContentClassification componentId="<%=quickinfo.getComponentId()%>" />
 </c:when>
 <c:otherwise>
-	<view:pdcClassification componentId="<%=quickinfo.getComponentId()%>" contentId="${curQuickInfo.publicationId}" editable="true" />
+	<view:pdcClassification componentId="<%=quickinfo.getComponentId()%>" contentId="${curQuickInfo.publicationId}" editable="true" externalManagement="true" />
 </c:otherwise>
 </c:choose>
 
diff --git a/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/styleSheets/quickinfo.css b/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/styleSheets/quickinfo.css
index e0ba243116..4d95105185 100644
--- a/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/styleSheets/quickinfo.css
+++ b/quickinfo/quickinfo-war/src/main/webapp/quickinfo/jsp/styleSheets/quickinfo.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*** home***/
diff --git a/quizz/pom.xml b/quizz/pom.xml
index ba8e5fa208..654482c8b9 100644
--- a/quizz/pom.xml
+++ b/quizz/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/quizz/quizz-configuration/pom.xml b/quizz/quizz-configuration/pom.xml
index 94b10c4dba..20ca54a568 100644
--- a/quizz/quizz-configuration/pom.xml
+++ b/quizz/quizz-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>quizz</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.quizz</groupId>
diff --git a/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz.properties b/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz.properties
index 6f42755220..890acc970f 100644
--- a/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz.properties
+++ b/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 QuizzCredits = Cr\u00e9dits
 QuizzCreationDate = Date de cr\u00e9ation
diff --git a/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz_de.properties b/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz_de.properties
index 92d69b4b04..58e3a6018c 100644
--- a/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz_de.properties
+++ b/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 QuizzCredits = Kredit-Punkte
 QuizzCreationDate = Erstellungsdatum
diff --git a/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz_en.properties b/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz_en.properties
index d581dae9bf..19c75df02c 100644
--- a/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz_en.properties
+++ b/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 QuizzCredits = Credits
 QuizzCreationDate = Created
diff --git a/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz_fr.properties b/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz_fr.properties
index bae423e217..bd0fc2bf12 100644
--- a/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz_fr.properties
+++ b/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/multilang/quizz_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 QuizzCredits = Cr\u00e9dits
 QuizzCreationDate = Date de cr\u00e9ation
diff --git a/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/quizzSettings.properties b/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/quizzSettings.properties
index 08775910d4..78bc36d461 100644
--- a/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/quizzSettings.properties
+++ b/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/quizz/quizzSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 imagesSubDirectory = images
 nbTopScores = 3
diff --git a/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/util/logging/quizzLogging.properties b/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/util/logging/quizzLogging.properties
index 7ca20e1e2f..8daf4c8e2f 100644
--- a/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/util/logging/quizzLogging.properties
+++ b/quizz/quizz-configuration/src/main/config/properties/org/silverpeas/util/logging/quizzLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/quizz/quizz-configuration/src/main/config/xmlcomponents/quizz.xml b/quizz/quizz-configuration/src/main/config/xmlcomponents/quizz.xml
index 0179489dcb..9fd170b0c3 100644
--- a/quizz/quizz-configuration/src/main/config/xmlcomponents/quizz.xml
+++ b/quizz/quizz-configuration/src/main/config/xmlcomponents/quizz.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/quizz/quizz-library/pom.xml b/quizz/quizz-library/pom.xml
index cd758c7c13..f0660aae88 100644
--- a/quizz/quizz-library/pom.xml
+++ b/quizz/quizz-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>quizz</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.quizz</groupId>
diff --git a/quizz/quizz-library/src/main/java/org/silverpeas/components/quizz/QuizzContentManager.java b/quizz/quizz-library/src/main/java/org/silverpeas/components/quizz/QuizzContentManager.java
index 4b19ba651e..12e4f9c010 100644
--- a/quizz/quizz-library/src/main/java/org/silverpeas/components/quizz/QuizzContentManager.java
+++ b/quizz/quizz-library/src/main/java/org/silverpeas/components/quizz/QuizzContentManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quizz;
diff --git a/quizz/quizz-library/src/main/java/org/silverpeas/components/quizz/QuizzException.java b/quizz/quizz-library/src/main/java/org/silverpeas/components/quizz/QuizzException.java
index 523abff5b3..5f982a16c0 100644
--- a/quizz/quizz-library/src/main/java/org/silverpeas/components/quizz/QuizzException.java
+++ b/quizz/quizz-library/src/main/java/org/silverpeas/components/quizz/QuizzException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quizz;
diff --git a/quizz/quizz-library/src/main/java/org/silverpeas/components/quizz/QuizzStatistics.java b/quizz/quizz-library/src/main/java/org/silverpeas/components/quizz/QuizzStatistics.java
index c46e77566c..9738c66f47 100644
--- a/quizz/quizz-library/src/main/java/org/silverpeas/components/quizz/QuizzStatistics.java
+++ b/quizz/quizz-library/src/main/java/org/silverpeas/components/quizz/QuizzStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quizz;
diff --git a/quizz/quizz-war/pom.xml b/quizz/quizz-war/pom.xml
index 7c1e48d939..d3526124be 100644
--- a/quizz/quizz-war/pom.xml
+++ b/quizz/quizz-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>quizz</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 	
   <groupId>org.silverpeas.components.quizz</groupId>
diff --git a/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/QuestionForm.java b/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/QuestionForm.java
index 67434c0e40..af79669790 100644
--- a/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/QuestionForm.java
+++ b/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/QuestionForm.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quizz;
 
diff --git a/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/QuestionHelper.java b/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/QuestionHelper.java
index 68f139ebd6..7da19228a0 100644
--- a/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/QuestionHelper.java
+++ b/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/QuestionHelper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quizz;
 
diff --git a/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/QuizzIndexer.java b/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/QuizzIndexer.java
index 85819b4db9..d262d9b9e1 100644
--- a/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/QuizzIndexer.java
+++ b/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/QuizzIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quizz;
 
diff --git a/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/control/QuizzSessionController.java b/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/control/QuizzSessionController.java
index 687abb15ff..40ae204786 100644
--- a/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/control/QuizzSessionController.java
+++ b/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/control/QuizzSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quizz.control;
 
diff --git a/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/servlets/GoToQuizz.java b/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/servlets/GoToQuizz.java
index 44abd5f91d..14f7deee97 100644
--- a/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/servlets/GoToQuizz.java
+++ b/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/servlets/GoToQuizz.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.quizz.servlets;
 
diff --git a/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/servlets/QuizzRequestRouter.java b/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/servlets/QuizzRequestRouter.java
index 1d2c2d55df..8989ab9695 100644
--- a/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/servlets/QuizzRequestRouter.java
+++ b/quizz/quizz-war/src/main/java/org/silverpeas/components/quizz/servlets/QuizzRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.quizz.servlets;
diff --git a/quizz/quizz-war/src/main/webapp/WEB-INF/web.xml b/quizz/quizz-war/src/main/webapp/WEB-INF/web.xml
index 5f0e274594..0de98c96fb 100644
--- a/quizz/quizz-war/src/main/webapp/WEB-INF/web.xml
+++ b/quizz/quizz-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/checkQuizz.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/checkQuizz.jsp
index 88086a2773..fe4509f207 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/checkQuizz.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/checkQuizz.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/deleteQuizz.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/deleteQuizz.jsp
index ae88aaee3d..1291cf195b 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/deleteQuizz.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/deleteQuizz.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/palmares.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/palmares.jsp
index ce1ab31d25..626e06a8cd 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/palmares.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/palmares.jsp
@@ -1,6 +1,6 @@
 <%@ page import="org.silverpeas.core.util.WebEncodeHelper" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/palmaresAdmin.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/palmaresAdmin.jsp
index 2ea97e8db4..399bef97ce 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/palmaresAdmin.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/palmaresAdmin.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/questionCreator.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/questionCreator.jsp
index e182eae735..74f786506d 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/questionCreator.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/questionCreator.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/questionCreatorBis.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/questionCreatorBis.jsp
index e480cc48df..312ec42a5a 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/questionCreatorBis.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/questionCreatorBis.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/questionsUpdate.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/questionsUpdate.jsp
index 9150aeff96..ff18a7ffb5 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/questionsUpdate.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/questionsUpdate.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzAdmin.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzAdmin.jsp
index 34da2be6cd..cf5fb5a54a 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzAdmin.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzAdmin.jsp
@@ -3,7 +3,7 @@
 <%@ page import="java.net.URLEncoder" %>
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -15,7 +15,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -23,7 +23,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzClue.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzClue.jsp
index 675d01ece6..24013746c7 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzClue.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzClue.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzCluePreview.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzCluePreview.jsp
index 854b72bd27..18a2c516a8 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzCluePreview.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzCluePreview.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzCreator.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzCreator.jsp
index 4591652f1f..9689733e49 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzCreator.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzCreator.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzPortlet.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzPortlet.jsp
index 0565fec578..0d963f655f 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzPortlet.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzPortlet.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzQuestions.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzQuestions.jsp
index 9cecc50e7e..eb382dd14e 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzQuestions.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzQuestions.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzQuestionsNew.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzQuestionsNew.jsp
index b98433571c..a755990dd6 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzQuestionsNew.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzQuestionsNew.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzResultAdmin.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzResultAdmin.jsp
index fa0500b10a..0d97c9c1ab 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzResultAdmin.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzResultAdmin.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzResultUser.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzResultUser.jsp
index c8295020c9..fe6455a792 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzResultUser.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzResultUser.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzUpdate.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzUpdate.jsp
index 1179a327e7..c80e9b4457 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzUpdate.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzUpdate.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzUser.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzUser.jsp
index 76d00c8212..2e273856c2 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzUser.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzUser.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzUserPortlet.jsp b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzUserPortlet.jsp
index 487b51d986..d68097311e 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzUserPortlet.jsp
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/quizzUserPortlet.jsp
@@ -2,7 +2,7 @@
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.frame.Frame" %>
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.window.Window" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -14,7 +14,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -22,7 +22,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/styleSheets/globalSP.css b/quizz/quizz-war/src/main/webapp/quizz/jsp/styleSheets/globalSP.css
index 1b676e4ad0..7ce2bc8a90 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/styleSheets/globalSP.css
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/styleSheets/globalSP.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 <!--
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/styleSheets/globalSPAdmin.css b/quizz/quizz-war/src/main/webapp/quizz/jsp/styleSheets/globalSPAdmin.css
index abd675d19a..ac471d9430 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/styleSheets/globalSPAdmin.css
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/styleSheets/globalSPAdmin.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 <!--
diff --git a/quizz/quizz-war/src/main/webapp/quizz/jsp/styleSheets/quizz.css b/quizz/quizz-war/src/main/webapp/quizz/jsp/styleSheets/quizz.css
index 213a2efa74..768a3fea8a 100644
--- a/quizz/quizz-war/src/main/webapp/quizz/jsp/styleSheets/quizz.css
+++ b/quizz/quizz-war/src/main/webapp/quizz/jsp/styleSheets/quizz.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */
 
 label {
diff --git a/resourcesManager/pom.xml b/resourcesManager/pom.xml
index 3b79f0f2e7..34f12ada06 100644
--- a/resourcesManager/pom.xml
+++ b/resourcesManager/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/resourcesManager/resourcesManager-configuration/pom.xml b/resourcesManager/resourcesManager-configuration/pom.xml
index 3e54f1010d..2fe96c2978 100644
--- a/resourcesManager/resourcesManager-configuration/pom.xml
+++ b/resourcesManager/resourcesManager-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>resourcesmanager</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.resourcesmanager</groupId>
diff --git a/resourcesManager/resourcesManager-configuration/src/main/config/migrations/modules/resourcesManager-migration.xml b/resourcesManager/resourcesManager-configuration/src/main/config/migrations/modules/resourcesManager-migration.xml
index 4437f99330..12a50198ed 100644
--- a/resourcesManager/resourcesManager-configuration/src/main/config/migrations/modules/resourcesManager-migration.xml
+++ b/resourcesManager/resourcesManager-configuration/src/main/config/migrations/modules/resourcesManager-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify it under the terms of the
   ~ GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -10,14 +10,14 @@
   ~ redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
   ~ applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
   ~ text describing the FLOSS exception, and it is also available here:
-  ~ "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  ~ "https://www.silverpeas.org/legal/floss_exception.html"
   ~
   ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
   ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   ~ Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License along with this program.
-  ~ If not, see <http://www.gnu.org/licenses/>.
+  ~ If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <migration module="resourcesManager"
diff --git a/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle.properties b/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle.properties
index 09639480f1..6993569a36 100644
--- a/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle.properties
+++ b/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 resourcesManager.accueil = Planning des r\u00e9servations
 resourcesManager.categorie = Cat\u00e9gorie
diff --git a/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle_de.properties b/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle_de.properties
index 9d12a9a238..9d60edfd7e 100644
--- a/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle_de.properties
+++ b/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 resourcesManager.accueil = Zeitplan
 resourcesManager.categorie = Kategorie
diff --git a/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle_en.properties b/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle_en.properties
index 958c238f2c..77122baf87 100644
--- a/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle_en.properties
+++ b/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 resourcesManager.accueil = Reservations
 resourcesManager.categorie = Category
diff --git a/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle_fr.properties b/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle_fr.properties
index aa2343e4de..965bbd214e 100644
--- a/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle_fr.properties
+++ b/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/multilang/resourcesManagerBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 resourcesManager.accueil = Planning des r\u00e9servations
 resourcesManager.categorie = Cat\u00e9gorie
diff --git a/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/settings/resourcesManagerIcons.properties b/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/settings/resourcesManagerIcons.properties
index bfe94b09bf..87244d42f3 100644
--- a/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/settings/resourcesManagerIcons.properties
+++ b/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/resourcesmanager/settings/resourcesManagerIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 resourcesManager.logo = /resourcesManager/jsp/icons/logo.gif
 
diff --git a/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/util/logging/resourcesManagerLogging.properties b/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/util/logging/resourcesManagerLogging.properties
index 8dcf574e6e..71a7826ece 100644
--- a/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/util/logging/resourcesManagerLogging.properties
+++ b/resourcesManager/resourcesManager-configuration/src/main/config/properties/org/silverpeas/util/logging/resourcesManagerLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/resourcesManager/resourcesManager-configuration/src/main/config/xmlcomponents/resourcesManager.xml b/resourcesManager/resourcesManager-configuration/src/main/config/xmlcomponents/resourcesManager.xml
index 117f4dda4a..e3f0838ff8 100644
--- a/resourcesManager/resourcesManager-configuration/src/main/config/xmlcomponents/resourcesManager.xml
+++ b/resourcesManager/resourcesManager-configuration/src/main/config/xmlcomponents/resourcesManager.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/resourcesManager/resourcesManager-library/pom.xml b/resourcesManager/resourcesManager-library/pom.xml
index 457274a715..5e7ca24156 100644
--- a/resourcesManager/resourcesManager-library/pom.xml
+++ b/resourcesManager/resourcesManager-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>resourcesmanager</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.resourcesmanager</groupId>
diff --git a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/ResourcesManagerInstancePreDestructionIT.java b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/ResourcesManagerInstancePreDestructionIT.java
index 42fb851046..22b458408c 100644
--- a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/ResourcesManagerInstancePreDestructionIT.java
+++ b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/ResourcesManagerInstancePreDestructionIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager;
 
diff --git a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/repository/ReservedResourceRepositoryIT.java b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/repository/ReservedResourceRepositoryIT.java
index 1d19d4fba3..d75f7a7110 100644
--- a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/repository/ReservedResourceRepositoryIT.java
+++ b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/repository/ReservedResourceRepositoryIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.repository;
 
diff --git a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/repository/ResourceValidatorRepositoryIT.java b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/repository/ResourceValidatorRepositoryIT.java
index 011f7d1aea..72e80ed686 100644
--- a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/repository/ResourceValidatorRepositoryIT.java
+++ b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/repository/ResourceValidatorRepositoryIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.repository;
 
diff --git a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/CategoryMatcher.java b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/CategoryMatcher.java
index f930a26492..7c715d317b 100644
--- a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/CategoryMatcher.java
+++ b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/CategoryMatcher.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.resourcesmanager.service;
diff --git a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/CategoryServiceIT.java b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/CategoryServiceIT.java
index 9da5508a51..8603bb84d4 100644
--- a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/CategoryServiceIT.java
+++ b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/CategoryServiceIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.resourcesmanager.service;
diff --git a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/ReservationServiceIT.java b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/ReservationServiceIT.java
index 790f03aab5..54ce4ae76c 100644
--- a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/ReservationServiceIT.java
+++ b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/ReservationServiceIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.service;
 
diff --git a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/ReservedResourceServiceIT.java b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/ReservedResourceServiceIT.java
index 91a437e24f..5b80ce3c4a 100644
--- a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/ReservedResourceServiceIT.java
+++ b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/ReservedResourceServiceIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.service;
 
diff --git a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/ResourceServiceIT.java b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/ResourceServiceIT.java
index 23ad592b38..adc7238a76 100644
--- a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/ResourceServiceIT.java
+++ b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/service/ResourceServiceIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.resourcesmanager.service;
diff --git a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/test/WarBuilder4ResourcesManager.java b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/test/WarBuilder4ResourcesManager.java
index 0559bd5d06..aebbff30d3 100644
--- a/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/test/WarBuilder4ResourcesManager.java
+++ b/resourcesManager/resourcesManager-library/src/integration-test/java/org/silverpeas/components/resourcesmanager/test/WarBuilder4ResourcesManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.test;
 
diff --git a/resourcesManager/resourcesManager-library/src/integration-test/resources/arquillian.xml b/resourcesManager/resourcesManager-library/src/integration-test/resources/arquillian.xml
index c14046f2bb..bc5b073b7d 100644
--- a/resourcesManager/resourcesManager-library/src/integration-test/resources/arquillian.xml
+++ b/resourcesManager/resourcesManager-library/src/integration-test/resources/arquillian.xml
@@ -1,6 +1,6 @@
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <arquillian xmlns="http://jboss.org/schema/arquillian"
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerInstancePreDestruction.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerInstancePreDestruction.java
index d161c2bcd1..463afad077 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerInstancePreDestruction.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerProvider.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerProvider.java
index 00dd558339..9ec8e7d75b 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerProvider.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerStatistics.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerStatistics.java
index 08a8fb8b06..745cc34224 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerStatistics.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/Category.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/Category.java
index 8792dfb5c8..a9f718aa5d 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/Category.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/Category.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.model;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/Reservation.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/Reservation.java
index b434b1117f..d56e0c3642 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/Reservation.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/Reservation.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.model;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ReservedResource.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ReservedResource.java
index a2e0a14c01..840bcc352f 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ReservedResource.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ReservedResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.model;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ReservedResourcePk.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ReservedResourcePk.java
index af5048e8b2..941acdedfd 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ReservedResourcePk.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ReservedResourcePk.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.model;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/Resource.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/Resource.java
index 8df41d850f..f74c81bfea 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/Resource.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/Resource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.model;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ResourceStatus.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ResourceStatus.java
index 9c0cde81da..ef4c3f5f1d 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ResourceStatus.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ResourceStatus.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.model;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ResourceValidator.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ResourceValidator.java
index 4d8df89eee..9be873930f 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ResourceValidator.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ResourceValidator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.model;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ResourceValidatorPk.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ResourceValidatorPk.java
index cd106bd1f2..500d37bf39 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ResourceValidatorPk.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/model/ResourceValidatorPk.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.model;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/CategoryJpaRepository.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/CategoryJpaRepository.java
index 647eb8009b..52ace60ca6 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/CategoryJpaRepository.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/CategoryJpaRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.resourcesmanager.repository;
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/CategoryRepository.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/CategoryRepository.java
index e657a0d4cd..391d25981c 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/CategoryRepository.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/CategoryRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.repository;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservationJpaManager.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservationJpaManager.java
index 6a7c5055f8..761d49cc47 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservationJpaManager.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservationJpaManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.resourcesmanager.repository;
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservationRepository.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservationRepository.java
index e84a598d8d..9ff3a8d919 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservationRepository.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservationRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General License as
@@ -19,7 +19,7 @@
  * GNU Affero General License for more details.
  *
  * You should have received a copy of the GNU Affero General License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.repository;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservedResourceJpaRepository.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservedResourceJpaRepository.java
index e016c96ad5..083ee22620 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservedResourceJpaRepository.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservedResourceJpaRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.repository;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservedResourceRepository.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservedResourceRepository.java
index d5b5f75449..4c515433d8 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservedResourceRepository.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ReservedResourceRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.repository;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceJpaRepository.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceJpaRepository.java
index 407652a64e..6c2cebab1e 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceJpaRepository.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceJpaRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.repository;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceRepository.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceRepository.java
index 887c33ff45..ff3f54ada3 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceRepository.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.repository;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceValidatorJpaRepository.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceValidatorJpaRepository.java
index cafd29a451..e394440208 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceValidatorJpaRepository.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceValidatorJpaRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.resourcesmanager.repository;
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceValidatorRepository.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceValidatorRepository.java
index bc040305f5..b17a3d1334 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceValidatorRepository.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/repository/ResourceValidatorRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.resourcesmanager.repository;
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/CategoryService.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/CategoryService.java
index 6c44a3090f..08c41582b9 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/CategoryService.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/CategoryService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.service;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ReservationService.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ReservationService.java
index d36b9e2fd8..130391b20f 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ReservationService.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ReservationService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.service;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ReservedResourceService.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ReservedResourceService.java
index 3b25352405..c709af88a8 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ReservedResourceService.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ReservedResourceService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.service;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ResourceService.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ResourceService.java
index b43fa07edc..7877541b9f 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ResourceService.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ResourceService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.service;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ResourcesManager.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ResourcesManager.java
index fa9ecef841..1b5db36ae1 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ResourcesManager.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ResourcesManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.service;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ResourcesManagerRuntimeException.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ResourcesManagerRuntimeException.java
index e77b26f7e3..244992ee0a 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ResourcesManagerRuntimeException.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/ResourcesManagerRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.service;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/SimpleResourcesManager.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/SimpleResourcesManager.java
index ba13351d5e..5639703c0f 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/SimpleResourcesManager.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/service/SimpleResourcesManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.service;
 
diff --git a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/util/ResourceUtil.java b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/util/ResourceUtil.java
index 363bf09556..8f87d52718 100644
--- a/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/util/ResourceUtil.java
+++ b/resourcesManager/resourcesManager-library/src/main/java/org/silverpeas/components/resourcesmanager/util/ResourceUtil.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.util;
 
diff --git a/resourcesManager/resourcesManager-war/pom.xml b/resourcesManager/resourcesManager-war/pom.xml
index 3033b90b52..273930b674 100644
--- a/resourcesManager/resourcesManager-war/pom.xml
+++ b/resourcesManager/resourcesManager-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>resourcesmanager</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.resourcesmanager</groupId>
diff --git a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerIndexer.java b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerIndexer.java
index d4b414b3a4..3728ac2da3 100644
--- a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerIndexer.java
+++ b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/ResourcesManagerIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager;
 
diff --git a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/control/ReservationTimeWindowViewContext.java b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/control/ReservationTimeWindowViewContext.java
index a5f4efd177..e45b703e0a 100644
--- a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/control/ReservationTimeWindowViewContext.java
+++ b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/control/ReservationTimeWindowViewContext.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.control;
 
diff --git a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/control/ResourceManagerDataViewType.java b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/control/ResourceManagerDataViewType.java
index 1876f474c5..fb960ce043 100644
--- a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/control/ResourceManagerDataViewType.java
+++ b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/control/ResourceManagerDataViewType.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.control;
 
diff --git a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/control/ResourcesManagerSessionController.java b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/control/ResourcesManagerSessionController.java
index 13685d6e4f..1eae70bc6e 100644
--- a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/control/ResourcesManagerSessionController.java
+++ b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/control/ResourcesManagerSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.control;
 
diff --git a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/servlets/AjaxResourcesManagerServlet.java b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/servlets/AjaxResourcesManagerServlet.java
index a935608c91..7c3dd088eb 100644
--- a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/servlets/AjaxResourcesManagerServlet.java
+++ b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/servlets/AjaxResourcesManagerServlet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.servlets;
 
diff --git a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/servlets/ResourcesManagerRequestRouter.java b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/servlets/ResourcesManagerRequestRouter.java
index cdbeacc49e..d619f7bfe9 100644
--- a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/servlets/ResourcesManagerRequestRouter.java
+++ b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/servlets/ResourcesManagerRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.servlets;
 
diff --git a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/AbstractResourceManagerResource.java b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/AbstractResourceManagerResource.java
index 1b96370693..99f5f0619f 100644
--- a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/AbstractResourceManagerResource.java
+++ b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/AbstractResourceManagerResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.web;
 
diff --git a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ReservationEntity.java b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ReservationEntity.java
index 058dc5b974..ce990863a2 100644
--- a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ReservationEntity.java
+++ b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ReservationEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.web;
 
diff --git a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ReservedResourceEntity.java b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ReservedResourceEntity.java
index 7861ce0406..e6515e92c4 100644
--- a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ReservedResourceEntity.java
+++ b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ReservedResourceEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.web;
 
diff --git a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceCategoryEntity.java b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceCategoryEntity.java
index 780486fb01..f8a962a783 100644
--- a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceCategoryEntity.java
+++ b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceCategoryEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.web;
 
diff --git a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceEntity.java b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceEntity.java
index daa82c1b7a..ea336d1d4e 100644
--- a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceEntity.java
+++ b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceEntity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.web;
 
diff --git a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceManagerResource.java b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceManagerResource.java
index 21f73ddb72..bf8d5c5001 100644
--- a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceManagerResource.java
+++ b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceManagerResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.web;
 
diff --git a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceManagerResourceURIs.java b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceManagerResourceURIs.java
index 10091ac2cc..b7f98af704 100644
--- a/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceManagerResourceURIs.java
+++ b/resourcesManager/resourcesManager-war/src/main/java/org/silverpeas/components/resourcesmanager/web/ResourceManagerResourceURIs.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.resourcesmanager.web;
 
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/WEB-INF/web.xml b/resourcesManager/resourcesManager-war/src/main/webapp/WEB-INF/web.xml
index b920b81239..aafc82cc2e 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/WEB-INF/web.xml
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/almanach.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/almanach.jsp
index ead7ff52fa..d242ecd6f4 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/almanach.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/almanach.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/cart.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/cart.jsp
index ce16c3e2f5..eb31cd5440 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/cart.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/cart.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
 
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/categories.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/categories.jsp
index 4787b45504..04e58ec510 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/categories.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/categories.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/categoryManager.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/categoryManager.jsp
index c92ccf624c..1e90426df4 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/categoryManager.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/categoryManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/check.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/check.jsp
index b3857456b0..28cfb00787 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/check.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/closeWindow.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/closeWindow.jsp
index 7526404536..85dfad0030 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/closeWindow.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/closeWindow.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/comments.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/comments.jsp
index 111a230e39..49ea6f7c45 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/comments.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/comments.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false"%>
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/javaScript/resourceManager-calendar.js b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/javaScript/resourceManager-calendar.js
index 8d2af26e17..873aca435f 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/javaScript/resourceManager-calendar.js
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/javaScript/resourceManager-calendar.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /**
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/portlet.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/portlet.jsp
index e0cfcfe17e..0833bbff63 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/portlet.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/portlet.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/refreshFromUserSelect.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/refreshFromUserSelect.jsp
index aa4aedcb21..02d52182d3 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/refreshFromUserSelect.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/refreshFromUserSelect.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/refuseResource.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/refuseResource.jsp
index b8c057391b..e614027846 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/refuseResource.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/refuseResource.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/reservationManager.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/reservationManager.jsp
index 1a7597519c..3f5553daff 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/reservationManager.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/reservationManager.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/resource.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/resource.jsp
index ea02f21123..980f3221aa 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/resource.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/resource.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/resourceManager.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/resourceManager.jsp
index a6183c435c..90988ccf21 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/resourceManager.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/resourceManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/resources.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/resources.jsp
index 9b45454747..8954491066 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/resources.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/resources.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/styleSheets/print_resourcesManager.css b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/styleSheets/print_resourcesManager.css
index 7c75566e1a..0b10ebc66b 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/styleSheets/print_resourcesManager.css
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/styleSheets/print_resourcesManager.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 #menubar-creation-actions, .cellOperation, #today, #others p, .milieuOngletOff {
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/styleSheets/resourcesManager.css b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/styleSheets/resourcesManager.css
index 17118b2821..bbe6d04f65 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/styleSheets/resourcesManager.css
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/styleSheets/resourcesManager.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 #navigation {
   background-color:#EAEAEA;
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/viewReservation.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/viewReservation.jsp
index d3ff2f3814..85a72d3c64 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/viewReservation.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/viewReservation.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/viewReservations.jsp b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/viewReservations.jsp
index 3cd05f653e..98defe86fe 100644
--- a/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/viewReservations.jsp
+++ b/resourcesManager/resourcesManager-war/src/main/webapp/resourcesManager/jsp/viewReservations.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/rssAggregator/pom.xml b/rssAggregator/pom.xml
index 98180af4e1..7985e62a21 100644
--- a/rssAggregator/pom.xml
+++ b/rssAggregator/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/rssAggregator/rssAggregator-configuration/pom.xml b/rssAggregator/rssAggregator-configuration/pom.xml
index 87bbdf0149..0d63703436 100644
--- a/rssAggregator/rssAggregator-configuration/pom.xml
+++ b/rssAggregator/rssAggregator-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>rssaggregator</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.rssaggregator</groupId>
diff --git a/rssAggregator/rssAggregator-configuration/src/main/config/migrations/modules/rssAgregator-migration.xml b/rssAggregator/rssAggregator-configuration/src/main/config/migrations/modules/rssAgregator-migration.xml
index 91edcaffb2..0a8efb1f59 100644
--- a/rssAggregator/rssAggregator-configuration/src/main/config/migrations/modules/rssAgregator-migration.xml
+++ b/rssAggregator/rssAggregator-configuration/src/main/config/migrations/modules/rssAgregator-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <migration module="rssAgregator"
diff --git a/rssAggregator/rssAggregator-configuration/src/main/config/migrations/scripts/rssAgregator/up002/replaceAggregatedValue.groovy b/rssAggregator/rssAggregator-configuration/src/main/config/migrations/scripts/rssAgregator/up002/replaceAggregatedValue.groovy
index ef3bd82096..941ecdaaf0 100644
--- a/rssAggregator/rssAggregator-configuration/src/main/config/migrations/scripts/rssAgregator/up002/replaceAggregatedValue.groovy
+++ b/rssAggregator/rssAggregator-configuration/src/main/config/migrations/scripts/rssAgregator/up002/replaceAggregatedValue.groovy
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 import java.sql.SQLException
diff --git a/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle.properties b/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle.properties
index 8e7db69858..820056690a 100644
--- a/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle.properties
+++ b/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 rss.url = Url
 rss.nbDisplayedItems = Nb d'items affich\u00e9s
diff --git a/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle_de.properties b/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle_de.properties
index f5a07640ef..d642e13f88 100644
--- a/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle_de.properties
+++ b/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 rss.url = URL
diff --git a/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle_en.properties b/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle_en.properties
index 6d3e392d31..cb06d8716d 100644
--- a/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle_en.properties
+++ b/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 rss.url = Url
 rss.nbDisplayedItems = # of displayed items
diff --git a/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle_fr.properties b/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle_fr.properties
index a6e8f65525..d26dbb304f 100644
--- a/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle_fr.properties
+++ b/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/multilang/rssAgregatorBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 rss.url = Url
 rss.nbDisplayedItems = Nb d'items affich\u00e9s
diff --git a/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/settings/rssAgregatorIcons.properties b/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/settings/rssAgregatorIcons.properties
index f5d2b97078..6508e16da3 100644
--- a/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/settings/rssAgregatorIcons.properties
+++ b/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/settings/rssAgregatorIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 rss.mandatoryField = /util/icons/mandatoryField.gif
 rss.deleteChannel = /util/icons/delete.gif
diff --git a/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/settings/rssAgregatorSettings.properties b/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/settings/rssAgregatorSettings.properties
index 7dd7e4106f..ab47a2ee2d 100644
--- a/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/settings/rssAgregatorSettings.properties
+++ b/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/rssAgregator/settings/rssAgregatorSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 # refresh rate in minutes else if return the RSS cache value
 refreshRate = 20
diff --git a/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/util/logging/rssAggregatorLogging.properties b/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/util/logging/rssAggregatorLogging.properties
index d1718b368c..1e51c3a3f6 100644
--- a/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/util/logging/rssAggregatorLogging.properties
+++ b/rssAggregator/rssAggregator-configuration/src/main/config/properties/org/silverpeas/util/logging/rssAggregatorLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/rssAggregator/rssAggregator-configuration/src/main/config/xmlcomponents/rssAgregator.xml b/rssAggregator/rssAggregator-configuration/src/main/config/xmlcomponents/rssAgregator.xml
index ede7f371e6..507e2fbac4 100644
--- a/rssAggregator/rssAggregator-configuration/src/main/config/xmlcomponents/rssAgregator.xml
+++ b/rssAggregator/rssAggregator-configuration/src/main/config/xmlcomponents/rssAgregator.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/rssAggregator/rssAggregator-library/pom.xml b/rssAggregator/rssAggregator-library/pom.xml
index 6e04a96cf1..2526c3ab8e 100644
--- a/rssAggregator/rssAggregator-library/pom.xml
+++ b/rssAggregator/rssAggregator-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>rssaggregator</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.rssaggregator</groupId>
diff --git a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/RssAgregatorInstancePreDestruction.java b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/RssAgregatorInstancePreDestruction.java
index c5b2d0d6c8..7a70bc607d 100644
--- a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/RssAgregatorInstancePreDestruction.java
+++ b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/RssAgregatorInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.rssaggregator;
 
diff --git a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/RssAgregatorRuntimeException.java b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/RssAgregatorRuntimeException.java
index 365d5c2650..a2a510432d 100644
--- a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/RssAgregatorRuntimeException.java
+++ b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/RssAgregatorRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.rssaggregator;
 
diff --git a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/RssAgregatorStatistics.java b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/RssAgregatorStatistics.java
index df50f50543..74d9fe79c3 100644
--- a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/RssAgregatorStatistics.java
+++ b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/RssAgregatorStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.rssaggregator;
diff --git a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/RSSItem.java b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/RSSItem.java
index 6255ff34c7..84e0f964e1 100644
--- a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/RSSItem.java
+++ b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/RSSItem.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.rssaggregator.model;
 
diff --git a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/RssAgregatorException.java b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/RssAgregatorException.java
index eed21a6a34..d9df449016 100644
--- a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/RssAgregatorException.java
+++ b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/RssAgregatorException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.rssaggregator.model;
 
diff --git a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/SPChannel.java b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/SPChannel.java
index 6277337422..5d6c63fa85 100644
--- a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/SPChannel.java
+++ b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/SPChannel.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.rssaggregator.model;
diff --git a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/SPChannelPK.java b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/SPChannelPK.java
index fbca039fc0..015e51da87 100644
--- a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/SPChannelPK.java
+++ b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/model/SPChannelPK.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.rssaggregator.model;
 
diff --git a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/DefaultRSSService.java b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/DefaultRSSService.java
index 8975f09748..784cfe78e9 100644
--- a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/DefaultRSSService.java
+++ b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/DefaultRSSService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.rssaggregator.service;
 
diff --git a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/DefaultRssAggregator.java b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/DefaultRssAggregator.java
index 4280dab882..9f00b885b9 100644
--- a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/DefaultRssAggregator.java
+++ b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/DefaultRssAggregator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.rssaggregator.service;
 
diff --git a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/FeedComparator.java b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/FeedComparator.java
index 917931fae0..dd8f13afa4 100644
--- a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/FeedComparator.java
+++ b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/FeedComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,11 +19,11 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -35,7 +35,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -43,7 +43,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.rssaggregator.service;
 
diff --git a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RSSService.java b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RSSService.java
index 472d25a5a6..5fcafe45dd 100644
--- a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RSSService.java
+++ b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RSSService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.rssaggregator.service;
 
diff --git a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RSSServiceProvider.java b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RSSServiceProvider.java
index fc25dc830b..56006a8f87 100644
--- a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RSSServiceProvider.java
+++ b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RSSServiceProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.rssaggregator.service;
 
diff --git a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RssAggregator.java b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RssAggregator.java
index 141658c4a5..16ce1d498f 100644
--- a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RssAggregator.java
+++ b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RssAggregator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.rssaggregator.service;
 
diff --git a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RssAggregatorCache.java b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RssAggregatorCache.java
index 933a723f5c..fd0643108d 100644
--- a/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RssAggregatorCache.java
+++ b/rssAggregator/rssAggregator-library/src/main/java/org/silverpeas/components/rssaggregator/service/RssAggregatorCache.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.rssaggregator.service;
 
diff --git a/rssAggregator/rssAggregator-library/src/main/resources/META-INF/beans.xml b/rssAggregator/rssAggregator-library/src/main/resources/META-INF/beans.xml
index c151b86795..523a978158 100644
--- a/rssAggregator/rssAggregator-library/src/main/resources/META-INF/beans.xml
+++ b/rssAggregator/rssAggregator-library/src/main/resources/META-INF/beans.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <beans
diff --git a/rssAggregator/rssAggregator-war/pom.xml b/rssAggregator/rssAggregator-war/pom.xml
index ed75839f79..c7c9b44187 100644
--- a/rssAggregator/rssAggregator-war/pom.xml
+++ b/rssAggregator/rssAggregator-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>rssaggregator</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.rssaggregator</groupId>
diff --git a/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/control/RssAgregatorSessionController.java b/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/control/RssAgregatorSessionController.java
index c4c2358381..2c9d6cc7e4 100644
--- a/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/control/RssAgregatorSessionController.java
+++ b/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/control/RssAgregatorSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.rssaggregator.control;
diff --git a/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/model/RSSViewType.java b/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/model/RSSViewType.java
index f4bf95df18..73a324e020 100644
--- a/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/model/RSSViewType.java
+++ b/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/model/RSSViewType.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.rssaggregator.model;
diff --git a/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/servlets/RssAgregatorRequestRouter.java b/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/servlets/RssAgregatorRequestRouter.java
index 8965124d43..c1c9168a3f 100644
--- a/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/servlets/RssAgregatorRequestRouter.java
+++ b/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/servlets/RssAgregatorRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.rssaggregator.servlets;
 
@@ -76,19 +76,19 @@ public String getDestination(String function, RssAgregatorSessionController rssS
       } else if (function.equals("LoadChannels")) {
         rssSC.getChannelsContent();
         destination = getDestination("Main", rssSC, request);
-      } else if (function.equals("ToCreateChannel")) {
+      } else if (function.equals("ToAddChannel")) {
         destination = getChannelManagerDestination(rssSC, request);
       } else if (function.equals("CreateChannel")) {
         final SPChannel channel = buildSPChannelFromRequest(request);
         rssSC.addChannel(channel);
         destination = getDestination("Main", rssSC, request);
-      } else if (function.equals("ToUpdateChannel")) {
+      } else if (function.equals("ToModifyChannel")) {
         destination = getChannelManagerDestination(rssSC, request);
       } else if (function.equals("UpdateChannel")) {
         final SPChannel channel = buildSPChannelFromRequest(request);
         rssSC.updateChannel(channel);
         destination = getDestination("LoadChannels", rssSC, request);
-      } else if (function.equals("ToDeleteChannel")) {
+      } else if (function.equals("ToRemoveChannel")) {
         request.setAttribute("DeletionMode", true);
         destination = getChannelManagerDestination(rssSC, request);
       } else if (function.equals("DeleteChannel")) {
diff --git a/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/web/RSSResource.java b/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/web/RSSResource.java
index c29305a5fb..77aa8b40a6 100644
--- a/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/web/RSSResource.java
+++ b/rssAggregator/rssAggregator-war/src/main/java/org/silverpeas/components/rssaggregator/web/RSSResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.rssaggregator.web;
 
diff --git a/rssAggregator/rssAggregator-war/src/main/webapp/WEB-INF/beans.xml b/rssAggregator/rssAggregator-war/src/main/webapp/WEB-INF/beans.xml
index c151b86795..523a978158 100644
--- a/rssAggregator/rssAggregator-war/src/main/webapp/WEB-INF/beans.xml
+++ b/rssAggregator/rssAggregator-war/src/main/webapp/WEB-INF/beans.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <beans
diff --git a/rssAggregator/rssAggregator-war/src/main/webapp/WEB-INF/web.xml b/rssAggregator/rssAggregator-war/src/main/webapp/WEB-INF/web.xml
index 73b84de713..5afe16617e 100644
--- a/rssAggregator/rssAggregator-war/src/main/webapp/WEB-INF/web.xml
+++ b/rssAggregator/rssAggregator-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/channelManager.jsp b/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/channelManager.jsp
index b97aa1b9c6..9e6700aad3 100644
--- a/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/channelManager.jsp
+++ b/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/channelManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/check.jsp b/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/check.jsp
index 0c6709e7cb..145ad21120 100644
--- a/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/check.jsp
+++ b/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/displayRSS.jsp b/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/displayRSS.jsp
index 59a892f66b..dbb740514f 100644
--- a/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/displayRSS.jsp
+++ b/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/displayRSS.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page import="com.rometools.rome.feed.synd.SyndEntry" %>
@@ -221,7 +221,7 @@ function displayAll() {
 }
 
 function addChannel() {
-  jQuery.popup.load('ToCreateChannel').show('validation', {
+  jQuery.popup.load('ToAddChannel').show('validation', {
     title : "${addChannelLabel}",
     callback : function() {
       validateChannelForm();
@@ -230,7 +230,7 @@ function addChannel() {
 }
 
 function updateChannel(id) {
-  jQuery.popup.load('ToUpdateChannel', {params : {'Id' : id}}).show('validation', {
+  jQuery.popup.load('ToModifyChannel', {params : {'Id' : id}}).show('validation', {
     title : "${modifyLabel}",
     callback : function() {
       validateChannelForm();
@@ -239,7 +239,7 @@ function updateChannel(id) {
 }
 
 function deleteChannel(id) {
-  jQuery.popup.load('ToDeleteChannel', {params : {'Id' : id}}).show('confirmation', {
+  jQuery.popup.load('ToRemoveChannel', {params : {'Id' : id}}).show('confirmation', {
     title : "${deleteLabel}",
     callback : function() {
       validateChannelForm();
diff --git a/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/rssPortletView.jsp b/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/rssPortletView.jsp
index 5d6faf0ea3..0f7462e766 100644
--- a/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/rssPortletView.jsp
+++ b/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/rssPortletView.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/whatIsRss.jsp b/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/whatIsRss.jsp
index c010f01b89..8fee4d04e8 100644
--- a/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/whatIsRss.jsp
+++ b/rssAggregator/rssAggregator-war/src/main/webapp/rssAgregator/jsp/whatIsRss.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -43,7 +43,7 @@
 <view:looknfeel />
   <script type="text/javascript">
     function addChannel() {
-      jQuery.popup.load('ToCreateChannel').show('validation', {
+      jQuery.popup.load('ToAddChannel').show('validation', {
         title : "${addChannelLabel}",
         callback : function() {
           validateChannelForm();
diff --git a/scheduleEvent/pom.xml b/scheduleEvent/pom.xml
index 394ef640e9..e5b8120de6 100644
--- a/scheduleEvent/pom.xml
+++ b/scheduleEvent/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/scheduleEvent/scheduleEvent-configuration/pom.xml b/scheduleEvent/scheduleEvent-configuration/pom.xml
index ad8f3cc8d7..d8e524da87 100644
--- a/scheduleEvent/scheduleEvent-configuration/pom.xml
+++ b/scheduleEvent/scheduleEvent-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>scheduleevent</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.scheduleevent</groupId>
diff --git a/scheduleEvent/scheduleEvent-configuration/src/main/config/migrations/modules/scheduleevent-migration.xml b/scheduleEvent/scheduleEvent-configuration/src/main/config/migrations/modules/scheduleevent-migration.xml
index 818d2d8a96..26f189014b 100644
--- a/scheduleEvent/scheduleEvent-configuration/src/main/config/migrations/modules/scheduleevent-migration.xml
+++ b/scheduleEvent/scheduleEvent-configuration/src/main/config/migrations/modules/scheduleevent-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <migration module="scheduleevent"
diff --git a/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle.properties b/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle.properties
index ae743cab4e..d159b72315 100644
--- a/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle.properties
+++ b/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 # component
diff --git a/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle_de.properties b/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle_de.properties
index 3fbfa866bf..722fc64688 100644
--- a/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle_de.properties
+++ b/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 # component
diff --git a/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle_en.properties b/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle_en.properties
index a631737b02..efa7a624fa 100644
--- a/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle_en.properties
+++ b/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 # application
diff --git a/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle_fr.properties b/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle_fr.properties
index 9d4a54796c..7c0347cf61 100644
--- a/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle_fr.properties
+++ b/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/multilang/ScheduleEventBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 # component
diff --git a/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/settings/ScheduleEventSettings.properties b/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/settings/ScheduleEventSettings.properties
index 2f18306b16..a9c5b6b5cd 100644
--- a/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/settings/ScheduleEventSettings.properties
+++ b/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/components/scheduleevent/settings/ScheduleEventSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 enableComment = true
 
diff --git a/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/util/logging/scheduleeventLogging.properties b/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/util/logging/scheduleeventLogging.properties
index 2edbb8e107..49c98ef44f 100644
--- a/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/util/logging/scheduleeventLogging.properties
+++ b/scheduleEvent/scheduleEvent-configuration/src/main/config/properties/org/silverpeas/util/logging/scheduleeventLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/scheduleEvent/scheduleEvent-library/pom.xml b/scheduleEvent/scheduleEvent-library/pom.xml
index 8d0afbb2f5..1cb4b349f3 100644
--- a/scheduleEvent/scheduleEvent-library/pom.xml
+++ b/scheduleEvent/scheduleEvent-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>scheduleevent</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.scheduleevent</groupId>
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/constant/ScheduleEventConstant.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/constant/ScheduleEventConstant.java
index 9b2fc57735..cef5162ff7 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/constant/ScheduleEventConstant.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/constant/ScheduleEventConstant.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.constant;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/notification/AbstractScheduleEventUserNotification.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/notification/AbstractScheduleEventUserNotification.java
index fe1aeba1b6..d4b7f55346 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/notification/AbstractScheduleEventUserNotification.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/notification/AbstractScheduleEventUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.notification;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/notification/ScheduleEventUserCallAgainNotification.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/notification/ScheduleEventUserCallAgainNotification.java
index df185c1fe1..73b2797d9e 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/notification/ScheduleEventUserCallAgainNotification.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/notification/ScheduleEventUserCallAgainNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.notification;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/notification/ScheduleEventUserNotification.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/notification/ScheduleEventUserNotification.java
index a0bc67b1de..bcb306af88 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/notification/ScheduleEventUserNotification.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/notification/ScheduleEventUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.notification;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/CalendarEventEncoder.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/CalendarEventEncoder.java
index 8197138522..2e14ad505c 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/CalendarEventEncoder.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/CalendarEventEncoder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.service;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/ScheduleEventService.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/ScheduleEventService.java
index 2b0ecc706d..3bad69d541 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/ScheduleEventService.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/ScheduleEventService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.service;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/ScheduleEventServiceImpl.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/ScheduleEventServiceImpl.java
index 6876983c12..47db650285 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/ScheduleEventServiceImpl.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/ScheduleEventServiceImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.service;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/ScheduleEventServiceProvider.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/ScheduleEventServiceProvider.java
index 2d9caa6805..79bb981af2 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/ScheduleEventServiceProvider.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/ScheduleEventServiceProvider.java
@@ -3,7 +3,7 @@
 import javax.inject.Inject;
 
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -13,14 +13,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 public class ScheduleEventServiceProvider {
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/ScheduleEventStatus.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/ScheduleEventStatus.java
index 2b60373e0d..87139acb90 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/ScheduleEventStatus.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/ScheduleEventStatus.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.service.model;
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/Contributor.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/Contributor.java
index 259933c153..8e9837796f 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/Contributor.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/Contributor.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.service.model.beans;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/ContributorComparator.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/ContributorComparator.java
index e70ebedd83..3265051ed6 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/ContributorComparator.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/ContributorComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.service.model.beans;
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/DateOption.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/DateOption.java
index eefab57823..128998609d 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/DateOption.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/DateOption.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.service.model.beans;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/DateOptionsComparator.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/DateOptionsComparator.java
index a70582310b..d2ab2db101 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/DateOptionsComparator.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/DateOptionsComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.service.model.beans;
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/Response.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/Response.java
index 33c60a2b10..a812f71758 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/Response.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/Response.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.service.model.beans;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/ScheduleEvent.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/ScheduleEvent.java
index 726881d3f3..06b21323a7 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/ScheduleEvent.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/ScheduleEvent.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.service.model.beans;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/ScheduleEventComparator.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/ScheduleEventComparator.java
index 638862580c..c2b85ab4a6 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/ScheduleEventComparator.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/ScheduleEventComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.service.model.beans;
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/UserEventPK.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/UserEventPK.java
index 0b06f47680..3147c49d59 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/UserEventPK.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/beans/UserEventPK.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.service.model.beans;
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ContributorDao.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ContributorDao.java
index a33c74a6ad..62b21c2689 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ContributorDao.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ContributorDao.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.service.model.dao;
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ContributorDaoImpl.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ContributorDaoImpl.java
index 8984fb46f1..9a487d5274 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ContributorDaoImpl.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ContributorDaoImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.service.model.dao;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/DateOptionDao.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/DateOptionDao.java
index e3f07a7a89..40836621c5 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/DateOptionDao.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/DateOptionDao.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.service.model.dao;
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/DateOptionDaoImpl.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/DateOptionDaoImpl.java
index eb0ca605fa..67f5f3778d 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/DateOptionDaoImpl.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/DateOptionDaoImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.service.model.dao;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ResponseDao.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ResponseDao.java
index 096f41a94f..28a777757d 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ResponseDao.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ResponseDao.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.service.model.dao;
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ResponseDaoImpl.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ResponseDaoImpl.java
index 0a5c7ae7b9..ce51221087 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ResponseDaoImpl.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ResponseDaoImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.service.model.dao;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ScheduleEventDao.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ScheduleEventDao.java
index a913bf9f23..5b55c3a380 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ScheduleEventDao.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ScheduleEventDao.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.service.model.dao;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ScheduleEventDaoImpl.java b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ScheduleEventDaoImpl.java
index cb147ace90..a2c4878aa4 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ScheduleEventDaoImpl.java
+++ b/scheduleEvent/scheduleEvent-library/src/main/java/org/silverpeas/components/scheduleevent/service/model/dao/ScheduleEventDaoImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.service.model.dao;
 
diff --git a/scheduleEvent/scheduleEvent-library/src/main/resources/META-INF/beans.xml b/scheduleEvent/scheduleEvent-library/src/main/resources/META-INF/beans.xml
index c151b86795..523a978158 100644
--- a/scheduleEvent/scheduleEvent-library/src/main/resources/META-INF/beans.xml
+++ b/scheduleEvent/scheduleEvent-library/src/main/resources/META-INF/beans.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <beans
diff --git a/scheduleEvent/scheduleEvent-war/pom.xml b/scheduleEvent/scheduleEvent-war/pom.xml
index 7a0e430b33..fc7e3bbf42 100644
--- a/scheduleEvent/scheduleEvent-war/pom.xml
+++ b/scheduleEvent/scheduleEvent-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>scheduleevent</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.scheduleevent</groupId>
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/control/ScheduleEventSessionController.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/control/ScheduleEventSessionController.java
index f80303d9b7..c27d490d22 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/control/ScheduleEventSessionController.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/control/ScheduleEventSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.control;
 
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/RequestHandlerRegistry.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/RequestHandlerRegistry.java
index 630a3bce5a..c81ecb9bdd 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/RequestHandlerRegistry.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/RequestHandlerRegistry.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/ScheduleEventRequestRouter.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/ScheduleEventRequestRouter.java
index d7f2e18275..a2ef9beb2d 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/ScheduleEventRequestRouter.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/ScheduleEventRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventActionDateRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventActionDateRequestHandler.java
index c8e147ec6b..b0e536d6e6 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventActionDateRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventActionDateRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddDateRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddDateRequestHandler.java
index 1be5696a19..6000a39e26 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddDateRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddDateRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddInfosGeneRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddInfosGeneRequestHandler.java
index a0333dfc93..c8d6a79241 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddInfosGeneRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddInfosGeneRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.servlets.handlers;
 
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddOptionsHourRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddOptionsHourRequestHandler.java
index 11eb543fc6..451471fa2a 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddOptionsHourRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddOptionsHourRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddOptionsNextRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddOptionsNextRequestHandler.java
index f877b66783..99b3cb38cd 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddOptionsNextRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddOptionsNextRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddRequestHandler.java
index 0592383bca..09ff99dc8f 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventAddRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackDateRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackDateRequestHandler.java
index 60494350ed..c0f90dc3c8 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackDateRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackDateRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackHourRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackHourRequestHandler.java
index 59a36ee43f..7ffd223640 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackHourRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackHourRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackInfosGeneRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackInfosGeneRequestHandler.java
index aff2fe277b..697c772ba6 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackInfosGeneRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackInfosGeneRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackwardRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackwardRequestHandler.java
index c798ca99d8..cb812dc613 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackwardRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventBackwardRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventCancelRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventCancelRequestHandler.java
index 678b480bc3..cd82a273dc 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventCancelRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventCancelRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventConfirmRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventConfirmRequestHandler.java
index 8d89822264..779708cac5 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventConfirmRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventConfirmRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventConfirmScreenRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventConfirmScreenRequestHandler.java
index ceedf97122..f1bf00bbf4 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventConfirmScreenRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventConfirmScreenRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventConfirmUsersRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventConfirmUsersRequestHandler.java
index fd3450943b..a899970a1d 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventConfirmUsersRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventConfirmUsersRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDateNextRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDateNextRequestHandler.java
index d2adbdedec..0f9475b198 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDateNextRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDateNextRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDeleteDateRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDeleteDateRequestHandler.java
index baeb0e273d..9ee89dd4ce 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDeleteDateRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDeleteDateRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDeleteRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDeleteRequestHandler.java
index 041cc08e60..ad70be4421 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDeleteRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDeleteRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDescriptionNextRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDescriptionNextRequestHandler.java
index 082a9f70c4..ae69c1ea71 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDescriptionNextRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDescriptionNextRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDetailRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDetailRequestHandler.java
index 67a9f39e86..06f37f1133 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDetailRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventDetailRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify it under the terms of the
  * GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -9,14 +9,14 @@
  * redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
  * applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
  * text describing the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License along with this program.
- * If not, see <http://www.gnu.org/licenses/>.
+ * If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.servlets.handlers;
 
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventExportRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventExportRequestHandler.java
index 52884721f6..7f49fffd09 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventExportRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventExportRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventMainRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventMainRequestHandler.java
index 2c7616fd5f..ade3107d6d 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventMainRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventMainRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventModifyStateRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventModifyStateRequestHandler.java
index 0cc220c1f6..47470a921b 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventModifyStateRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventModifyStateRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventOpenUserRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventOpenUserRequestHandler.java
index 8b1b3f27e9..8f1a36207f 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventOpenUserRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventOpenUserRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventRequestHandler.java
index 07a85df89c..3430624089 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventTimeNextRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventTimeNextRequestHandler.java
index d1e972d4fb..fb6802334c 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventTimeNextRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventTimeNextRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventValidResponseRequestHandler.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventValidResponseRequestHandler.java
index f4cc77eebd..7919a2fba6 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventValidResponseRequestHandler.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/servlets/handlers/ScheduleEventValidResponseRequestHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.scheduleevent.servlets.handlers;
diff --git a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/view/AbstractTimeVO.java b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/view/AbstractTimeVO.java
index 7f20f3e67d..92769ea89b 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/view/AbstractTimeVO.java
+++ b/scheduleEvent/scheduleEvent-war/src/main/java/org/silverpeas/components/scheduleevent/view/AbstractTimeVO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.scheduleevent.view;
 
diff --git a/scheduleEvent/scheduleEvent-war/src/main/webapp/WEB-INF/beans.xml b/scheduleEvent/scheduleEvent-war/src/main/webapp/WEB-INF/beans.xml
index c151b86795..523a978158 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/webapp/WEB-INF/beans.xml
+++ b/scheduleEvent/scheduleEvent-war/src/main/webapp/WEB-INF/beans.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <beans
diff --git a/scheduleEvent/scheduleEvent-war/src/main/webapp/WEB-INF/web.xml b/scheduleEvent/scheduleEvent-war/src/main/webapp/WEB-INF/web.xml
index dcc69955d2..4d5250251c 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/webapp/WEB-INF/web.xml
+++ b/scheduleEvent/scheduleEvent-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/check.jsp b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/check.jsp
index 6425110983..0c7cfb1407 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/check.jsp
+++ b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false"%>
diff --git a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/detail.jsp b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/detail.jsp
index eb89311ae1..0fc46b6c1c 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/detail.jsp
+++ b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/detail.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ include file="check.jsp"%>
diff --git a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/exportIcalPopup.jsp b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/exportIcalPopup.jsp
index 988d64b34f..d3dfd86483 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/exportIcalPopup.jsp
+++ b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/exportIcalPopup.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ include file="check.jsp" %>
diff --git a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/generalInfo.jsp b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/generalInfo.jsp
index c850cd304e..cf2413a2a3 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/generalInfo.jsp
+++ b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/generalInfo.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ include file="../check.jsp"%>
diff --git a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/notify.jsp b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/notify.jsp
index 806adee40d..fc659fce0f 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/notify.jsp
+++ b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/notify.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ include file="../check.jsp"%>
diff --git a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/options.jsp b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/options.jsp
index e68df50243..4de8416d8e 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/options.jsp
+++ b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/options.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ include file="../check.jsp"%>
diff --git a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/optionshour.jsp b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/optionshour.jsp
index b4ccd92264..15f8a1d716 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/optionshour.jsp
+++ b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/form/optionshour.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ include file="../check.jsp"%>
diff --git a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/list.jsp b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/list.jsp
index 7891a65efb..d2eb0cd755 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/list.jsp
+++ b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/list.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ include file="check.jsp"%>
diff --git a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/styleSheets/scheduleevent.css b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/styleSheets/scheduleevent.css
index 6179ae7782..ec33107bc7 100644
--- a/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/styleSheets/scheduleevent.css
+++ b/scheduleEvent/scheduleEvent-war/src/main/webapp/scheduleevent/jsp/styleSheets/scheduleevent.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 img {
diff --git a/silverCrawler/pom.xml b/silverCrawler/pom.xml
index b8743c994c..3b37c1ff29 100644
--- a/silverCrawler/pom.xml
+++ b/silverCrawler/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/silverCrawler/silverCrawler-configuration/pom.xml b/silverCrawler/silverCrawler-configuration/pom.xml
index dc0dcceca2..7ed324abe1 100644
--- a/silverCrawler/silverCrawler-configuration/pom.xml
+++ b/silverCrawler/silverCrawler-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>silvercrawler</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.silvercrawler</groupId>
diff --git a/silverCrawler/silverCrawler-configuration/src/main/config/migrations/modules/silverCrawler-migration.xml b/silverCrawler/silverCrawler-configuration/src/main/config/migrations/modules/silverCrawler-migration.xml
index 11084868be..5422fbea6b 100644
--- a/silverCrawler/silverCrawler-configuration/src/main/config/migrations/modules/silverCrawler-migration.xml
+++ b/silverCrawler/silverCrawler-configuration/src/main/config/migrations/modules/silverCrawler-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program. If not, see <http://www.gnu.org/licenses/>.
+  along with this program. If not, see <https://www.gnu.org/licenses/>.
   -->
 <migration module="silverCrawler"
            xmlns="http://silverpeas.org/xml/ns/migration"
diff --git a/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle.properties b/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle.properties
index 4c06e5598b..6a1e9e1f5b 100644
--- a/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle.properties
+++ b/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 silverCrawler.operation = Op\u00e9rations
 silverCrawler.reIndexer = R\u00e9indexer
diff --git a/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle_de.properties b/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle_de.properties
index cfd0b06c94..831c9a7173 100644
--- a/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle_de.properties
+++ b/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 silverCrawler.operation = Operationen
diff --git a/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle_en.properties b/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle_en.properties
index af77fde021..971f409dc9 100644
--- a/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle_en.properties
+++ b/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 silverCrawler.operation = Operations
 silverCrawler.reIndexer = Reindex
diff --git a/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle_fr.properties b/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle_fr.properties
index 4c06e5598b..6a1e9e1f5b 100644
--- a/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle_fr.properties
+++ b/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/multilang/silverCrawlerBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 silverCrawler.operation = Op\u00e9rations
 silverCrawler.reIndexer = R\u00e9indexer
diff --git a/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/settings/silverCrawlerIcons.properties b/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/settings/silverCrawlerIcons.properties
index daabb8ec8d..2e94228cc7 100644
--- a/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/settings/silverCrawlerIcons.properties
+++ b/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/settings/silverCrawlerIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 silverCrawler.delete = /util/icons/publicationDelete.gif
 silverCrawler.smallDelete = /util/icons/delete.gif
diff --git a/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/settings/silverCrawlerSettings.properties b/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/settings/silverCrawlerSettings.properties
index 0b0f5c958e..232fa4e108 100644
--- a/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/settings/silverCrawlerSettings.properties
+++ b/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/silvercrawler/settings/silverCrawlerSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 # dates et heures de l'indexation automatique des fichiers
 cronScheduledIndex = 00 23 * * *
diff --git a/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/util/logging/silvercrawlerLogging.properties b/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/util/logging/silvercrawlerLogging.properties
index 84b9b4c5d0..a2c112d8fb 100644
--- a/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/util/logging/silvercrawlerLogging.properties
+++ b/silverCrawler/silverCrawler-configuration/src/main/config/properties/org/silverpeas/util/logging/silvercrawlerLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/silverCrawler/silverCrawler-configuration/src/main/config/xmlcomponents/silverCrawler.xml b/silverCrawler/silverCrawler-configuration/src/main/config/xmlcomponents/silverCrawler.xml
index d4c3887b80..697638c8f0 100644
--- a/silverCrawler/silverCrawler-configuration/src/main/config/xmlcomponents/silverCrawler.xml
+++ b/silverCrawler/silverCrawler-configuration/src/main/config/xmlcomponents/silverCrawler.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!-- Copyright (C) 2000 - 2022 Silverpeas This program is free software:
+<!-- Copyright (C) 2000 - 2024 Silverpeas This program is free software:
 	you can redistribute it and/or modify it under the terms of the GNU Affero
 	General Public License as published by the Free Software Foundation, either
 	version 3 of the License, or (at your option) any later version. As a special
@@ -7,12 +7,12 @@
 	redistribute this Program in connection with Free/Libre Open Source Software
 	("FLOSS") applications as described in Silverpeas's FLOSS exception. You
 	should have recieved a copy of the text describing the FLOSS exception, and
-	it is also available here: "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+	it is also available here: "https://www.silverpeas.org/legal/floss_exception.html"
 	This program is distributed in the hope that it will be useful, but WITHOUT
 	ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 	FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
 	details. You should have received a copy of the GNU Affero General Public
-	License along with this program. If not, see <http://www.gnu.org/licenses/>. -->
+	License along with this program. If not, see <https://www.gnu.org/licenses/>. -->
 
 <WAComponent xmlns="http://silverpeas.org/xml/ns/component" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://silverpeas.org/xml/ns/component http://www.silverpeas.org/xsd/component.xsd">
diff --git a/silverCrawler/silverCrawler-library/pom.xml b/silverCrawler/silverCrawler-library/pom.xml
index 9202869d02..83889ad740 100644
--- a/silverCrawler/silverCrawler-library/pom.xml
+++ b/silverCrawler/silverCrawler-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>silvercrawler</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.silvercrawler</groupId>
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/ScheduledIndexFiles.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/ScheduledIndexFiles.java
index 62b7da6323..debba37c7a 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/ScheduledIndexFiles.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/ScheduledIndexFiles.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler;
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/SilverCrawlerInitialize.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/SilverCrawlerInitialize.java
index b1a17b62a8..d590d772a2 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/SilverCrawlerInitialize.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/SilverCrawlerInitialize.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler;
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/AccessProfile.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/AccessProfile.java
index a4fd5a4299..5b23d236fb 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/AccessProfile.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/AccessProfile.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.model;
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/FileDetail.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/FileDetail.java
index 1b988e2d75..ae71073d07 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/FileDetail.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/FileDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.model;
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/FileFolder.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/FileFolder.java
index ac39ae1457..9d31ef45fc 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/FileFolder.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/FileFolder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.model;
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerFileUploadException.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerFileUploadException.java
index ade6129e10..39f68aa412 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerFileUploadException.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerFileUploadException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.silvercrawler.model;
 
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerFolderCreationException.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerFolderCreationException.java
index 6bcc9e02bf..6c0e2d30ad 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerFolderCreationException.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerFolderCreationException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.silvercrawler.model;
 
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerFolderRenameException.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerFolderRenameException.java
index ca77665be1..df1ffc6e7a 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerFolderRenameException.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerFolderRenameException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.silvercrawler.model;
 
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerForbiddenActionException.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerForbiddenActionException.java
index 561327b460..3078f5ec55 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerForbiddenActionException.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerForbiddenActionException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.silvercrawler.model;
 
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerRuntimeException.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerRuntimeException.java
index ef86999cfb..4747f25b06 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerRuntimeException.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/model/SilverCrawlerRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.silvercrawler.model;
 
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/package-info.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/package-info.java
index e46ee3577a..27f1edb0e1 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/package-info.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/package-info.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  * @author mmoquillon
  */
 /**
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/HistoryByUser.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/HistoryByUser.java
index 410ad422bd..23a42df0b0 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/HistoryByUser.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/HistoryByUser.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.statistic;
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/HistoryDAO.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/HistoryDAO.java
index 8b65eec753..bdffd49b83 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/HistoryDAO.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/HistoryDAO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.statistic;
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/HistoryDetail.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/HistoryDetail.java
index 894a8a34ae..7456ac852f 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/HistoryDetail.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/HistoryDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.statistic;
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/Statistic.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/Statistic.java
index 47a3f55f84..47caa31bf4 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/Statistic.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/statistic/Statistic.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.statistic;
diff --git a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/util/FileServerUtils.java b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/util/FileServerUtils.java
index d9fefa9c47..d4995f23fd 100644
--- a/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/util/FileServerUtils.java
+++ b/silverCrawler/silverCrawler-library/src/main/java/org/silverpeas/components/silvercrawler/util/FileServerUtils.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.util;
diff --git a/silverCrawler/silverCrawler-war/pom.xml b/silverCrawler/silverCrawler-war/pom.xml
index ac94996f7a..cea0a609ae 100644
--- a/silverCrawler/silverCrawler-war/pom.xml
+++ b/silverCrawler/silverCrawler-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
 	<modelVersion>4.0.0</modelVersion>
 	<parent>
 		<groupId>org.silverpeas.components</groupId>
 		<artifactId>silvercrawler</artifactId>
-		<version>6.3-SNAPSHOT</version>
+		<version>6.3.7-SNAPSHOT</version>
 	</parent>
 
 	<groupId>org.silverpeas.components.silvercrawler</groupId>
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/SilverCrawlerIndexer.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/SilverCrawlerIndexer.java
index 3b0d858b32..74258730eb 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/SilverCrawlerIndexer.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/SilverCrawlerIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.silvercrawler;
 
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/FolderZIPInfo.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/FolderZIPInfo.java
index 234808bb0c..87b9aa6d1f 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/FolderZIPInfo.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/FolderZIPInfo.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.control;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/IPMaskHelper.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/IPMaskHelper.java
index e06dbc4af8..2760a02ee1 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/IPMaskHelper.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/IPMaskHelper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.control;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/ProfileHelper.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/ProfileHelper.java
index c747e69097..7e14abccb6 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/ProfileHelper.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/ProfileHelper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.control;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/SilverCrawlerSessionController.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/SilverCrawlerSessionController.java
index 598527c238..5f6ac6f5b2 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/SilverCrawlerSessionController.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/SilverCrawlerSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.silvercrawler.control;
 
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/UploadItem.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/UploadItem.java
index 1fb9b66cbd..ee9274c9d7 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/UploadItem.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/UploadItem.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.control;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/UploadReport.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/UploadReport.java
index c9e5e72da3..f8f88ae2d0 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/UploadReport.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/control/UploadReport.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.control;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/package-info.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/package-info.java
index 796fa749bb..3974dfffc1 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/package-info.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/package-info.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  * @author mmoquillon
  */
 package org.silverpeas.components.silvercrawler;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/DragAndDrop.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/DragAndDrop.java
index 391e802c89..29824b3eaa 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/DragAndDrop.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/DragAndDrop.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.silvercrawler.servlets;
 
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/GoToCrawler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/GoToCrawler.java
index 3e049357fe..cab91fb272 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/GoToCrawler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/GoToCrawler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.silvercrawler.servlets;
 
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/SilverCrawlerFileServer.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/SilverCrawlerFileServer.java
index 445f01c56f..146f7f9ee8 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/SilverCrawlerFileServer.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/SilverCrawlerFileServer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.silvercrawler.servlets;
 
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/SilverCrawlerRequestRouter.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/SilverCrawlerRequestRouter.java
index 45129281bc..adf8265aed 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/SilverCrawlerRequestRouter.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/SilverCrawlerRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.silvercrawler.servlets;
 
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ActivateReadWriteAccessHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ActivateReadWriteAccessHandler.java
index 4be8a70eef..9c7700da32 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ActivateReadWriteAccessHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ActivateReadWriteAccessHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/BackToSearchResultsHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/BackToSearchResultsHandler.java
index 14fa83e146..5b5f1aff1d 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/BackToSearchResultsHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/BackToSearchResultsHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/CreateFolderFormHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/CreateFolderFormHandler.java
index 1c4007b272..1c6a5f0093 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/CreateFolderFormHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/CreateFolderFormHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/CreateFolderHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/CreateFolderHandler.java
index 3a4250d199..fa0890b28b 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/CreateFolderHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/CreateFolderHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/DownloadFolderHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/DownloadFolderHandler.java
index f01330b424..35c8bc3fa9 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/DownloadFolderHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/DownloadFolderHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/FunctionHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/FunctionHandler.java
index 9cf86a3779..7a15573f62 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/FunctionHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/FunctionHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.silvercrawler.servlets.handlers;
 
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/GoToDirectoryHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/GoToDirectoryHandler.java
index 66549f1947..4da3ed9517 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/GoToDirectoryHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/GoToDirectoryHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/HandlerProvider.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/HandlerProvider.java
index 9774dd07d2..9056a238a1 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/HandlerProvider.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/HandlerProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexFileHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexFileHandler.java
index 747b3aeb56..93e4de4507 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexFileHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexFileHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexPathHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexPathHandler.java
index cf16b57cd2..d8631ff0ae 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexPathHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexPathHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexSelectedFilesHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexSelectedFilesHandler.java
index 53c62849fc..4fb4a6274f 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexSelectedFilesHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexSelectedFilesHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexSelectedFoldersHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexSelectedFoldersHandler.java
index 0a918d5384..3a2a48471b 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexSelectedFoldersHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/IndexSelectedFoldersHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/InitHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/InitHandler.java
index 70336ed8a5..8cc5870063 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/InitHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/InitHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/PortletHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/PortletHandler.java
index 0a240ce0c9..098479d9f9 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/PortletHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/PortletHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ProcessDragAndDropHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ProcessDragAndDropHandler.java
index 5b5f74de9d..e5908faed5 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ProcessDragAndDropHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ProcessDragAndDropHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveFileHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveFileHandler.java
index fa9c3b5226..580ce1eaa2 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveFileHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveFileHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveFolderHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveFolderHandler.java
index e81a136778..dae48bb7d7 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveFolderHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveFolderHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveSelectedFilesHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveSelectedFilesHandler.java
index 6fedc877d0..09ee2f2e58 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveSelectedFilesHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveSelectedFilesHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.silvercrawler.servlets.handlers;
 
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveSelectedFoldersHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveSelectedFoldersHandler.java
index 57b047ee1d..eb378b3cc6 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveSelectedFoldersHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RemoveSelectedFoldersHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFileFormHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFileFormHandler.java
index c6be8c280a..2eb98f9b36 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFileFormHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFileFormHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFileHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFileHandler.java
index 774a36dde1..59d5928e69 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFileHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFileHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFolderFormHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFolderFormHandler.java
index d170cd1b3f..cdd61d3e8c 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFolderFormHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFolderFormHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFolderHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFolderHandler.java
index 3ca2b5adf0..905da5c018 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFolderHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/RenameFolderHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ResolveConflictsHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ResolveConflictsHandler.java
index 318e55668e..a53b9f04be 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ResolveConflictsHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ResolveConflictsHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/SearchHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/SearchHandler.java
index 327862c719..c4c108aba6 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/SearchHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/SearchHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/SubDirectoryFromResultHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/SubDirectoryFromResultHandler.java
index 448a16025d..05ba6e2860 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/SubDirectoryFromResultHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/SubDirectoryFromResultHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/SubDirectoryHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/SubDirectoryHandler.java
index 880287f20d..8e7ac7e1c2 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/SubDirectoryHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/SubDirectoryHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/UnActivateReadWriteAccessHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/UnActivateReadWriteAccessHandler.java
index 110df5fd06..401f8530c2 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/UnActivateReadWriteAccessHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/UnActivateReadWriteAccessHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/UploadFileFormHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/UploadFileFormHandler.java
index 628cf6d52b..faf5b87aa1 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/UploadFileFormHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/UploadFileFormHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/UploadFileHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/UploadFileHandler.java
index 016a3cc0f8..189aa5add4 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/UploadFileHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/UploadFileHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewDirectoryHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewDirectoryHandler.java
index 50f3d365bc..174d8a658b 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewDirectoryHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewDirectoryHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewDownloadHistoryFromResultHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewDownloadHistoryFromResultHandler.java
index 1a4df762cf..01ff4b214e 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewDownloadHistoryFromResultHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewDownloadHistoryFromResultHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewDownloadHistoryHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewDownloadHistoryHandler.java
index 630f61a7c2..b86e11d67e 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewDownloadHistoryHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewDownloadHistoryHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewHistoryByUserHandler.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewHistoryByUserHandler.java
index 3cc62014e6..dd1828d74c 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewHistoryByUserHandler.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/servlets/handlers/ViewHistoryByUserHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.silvercrawler.servlets.handlers;
diff --git a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/util/IpAddressMatcher.java b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/util/IpAddressMatcher.java
index 6306394664..e2d0a125e6 100644
--- a/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/util/IpAddressMatcher.java
+++ b/silverCrawler/silverCrawler-war/src/main/java/org/silverpeas/components/silvercrawler/util/IpAddressMatcher.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.silvercrawler.util;
 
diff --git a/silverCrawler/silverCrawler-war/src/main/webapp/WEB-INF/tags/silverpeas/silverCrawler/browseBar.tag b/silverCrawler/silverCrawler-war/src/main/webapp/WEB-INF/tags/silverpeas/silverCrawler/browseBar.tag
index 8781f1915d..20f13cbb43 100644
--- a/silverCrawler/silverCrawler-war/src/main/webapp/WEB-INF/tags/silverpeas/silverCrawler/browseBar.tag
+++ b/silverCrawler/silverCrawler-war/src/main/webapp/WEB-INF/tags/silverpeas/silverCrawler/browseBar.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/silverCrawler/silverCrawler-war/src/main/webapp/WEB-INF/web.xml b/silverCrawler/silverCrawler-war/src/main/webapp/WEB-INF/web.xml
index 58afae5023..1e606ec0d3 100644
--- a/silverCrawler/silverCrawler-war/src/main/webapp/WEB-INF/web.xml
+++ b/silverCrawler/silverCrawler-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <web-app>
diff --git a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/check.jsp b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/check.jsp
index 8fea181dcb..15dd15e622 100644
--- a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/check.jsp
+++ b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/download.jsp b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/download.jsp
index b8c50f7502..0fb9b59322 100644
--- a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/download.jsp
+++ b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/download.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page import="org.silverpeas.core.util.file.FileRepositoryManager" %>
diff --git a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/dragNDropConflicts.jsp b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/dragNDropConflicts.jsp
index 7baba0f7c7..cd84784165 100644
--- a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/dragNDropConflicts.jsp
+++ b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/dragNDropConflicts.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/fileRenameForm.jsp b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/fileRenameForm.jsp
index 324d9ebe55..8bea207d81 100644
--- a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/fileRenameForm.jsp
+++ b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/fileRenameForm.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/fileUploadForm.jsp b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/fileUploadForm.jsp
index 638a95528e..c649de2b2f 100644
--- a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/fileUploadForm.jsp
+++ b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/fileUploadForm.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/folderCreationForm.jsp b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/folderCreationForm.jsp
index 33c9b78c8a..6d057ed5b4 100644
--- a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/folderCreationForm.jsp
+++ b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/folderCreationForm.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/folderRenameForm.jsp b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/folderRenameForm.jsp
index 2090e76482..774293cc56 100644
--- a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/folderRenameForm.jsp
+++ b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/folderRenameForm.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/history.jsp b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/history.jsp
index a3818e6f91..977bfa8e65 100644
--- a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/history.jsp
+++ b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/history.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/historyByUser.jsp b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/historyByUser.jsp
index 6bf2fecc56..667649dd4a 100644
--- a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/historyByUser.jsp
+++ b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/historyByUser.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/portlet.jsp b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/portlet.jsp
index 467e9f9986..23d63a4ef9 100644
--- a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/portlet.jsp
+++ b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/portlet.jsp
@@ -4,7 +4,7 @@
 <%@ page import="org.silverpeas.core.util.URLUtil" %>
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -16,7 +16,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -24,7 +24,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/viewDirectory.jsp b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/viewDirectory.jsp
index b860169e58..ad20aeeb06 100644
--- a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/viewDirectory.jsp
+++ b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/viewDirectory.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="java.net.URLEncoder"%>
diff --git a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/viewResultSearch.jsp b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/viewResultSearch.jsp
index d6b58456fc..5fde33541a 100644
--- a/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/viewResultSearch.jsp
+++ b/silverCrawler/silverCrawler-war/src/main/webapp/silverCrawler/jsp/viewResultSearch.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.util.WebEncodeHelper"%>
diff --git a/silverpeas-license.txt b/silverpeas-license.txt
index e85fb0417f..8055db64be 100644
--- a/silverpeas-license.txt
+++ b/silverpeas-license.txt
@@ -1,4 +1,4 @@
-Copyright (C) 2000 - 2022 Silverpeas
+Copyright (C) 2000 - 2024 Silverpeas
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU Affero General Public License as
@@ -18,4 +18,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU Affero General Public License for more details.
 
 You should have received a copy of the GNU Affero General Public License
-along with this program.  If not, see <http://www.gnu.org/licenses/>.
+along with this program.  If not, see <https://www.gnu.org/licenses/>.
diff --git a/spaceMembers/pom.xml b/spaceMembers/pom.xml
index 9d7d5cb21d..5771dfde9d 100644
--- a/spaceMembers/pom.xml
+++ b/spaceMembers/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
   
   <groupId>org.silverpeas.components</groupId>
diff --git a/spaceMembers/spaceMembers-configuration/pom.xml b/spaceMembers/spaceMembers-configuration/pom.xml
index 492f3816f0..8c51bc76e7 100644
--- a/spaceMembers/spaceMembers-configuration/pom.xml
+++ b/spaceMembers/spaceMembers-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>spacemembers</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.spacemembers</groupId>
diff --git a/spaceMembers/spaceMembers-configuration/src/main/config/properties/org/silverpeas/util/logging/spaceMembersLogging.properties b/spaceMembers/spaceMembers-configuration/src/main/config/properties/org/silverpeas/util/logging/spaceMembersLogging.properties
index 7077c7c5ab..e1e86ffd93 100644
--- a/spaceMembers/spaceMembers-configuration/src/main/config/properties/org/silverpeas/util/logging/spaceMembersLogging.properties
+++ b/spaceMembers/spaceMembers-configuration/src/main/config/properties/org/silverpeas/util/logging/spaceMembersLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/spaceMembers/spaceMembers-configuration/src/main/config/xmlcomponents/spaceMembers.xml b/spaceMembers/spaceMembers-configuration/src/main/config/xmlcomponents/spaceMembers.xml
index d6edd253fb..148536de5e 100644
--- a/spaceMembers/spaceMembers-configuration/src/main/config/xmlcomponents/spaceMembers.xml
+++ b/spaceMembers/spaceMembers-configuration/src/main/config/xmlcomponents/spaceMembers.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/spaceMembers/spaceMembers-library/pom.xml b/spaceMembers/spaceMembers-library/pom.xml
index d36322955d..06c02dfcef 100644
--- a/spaceMembers/spaceMembers-library/pom.xml
+++ b/spaceMembers/spaceMembers-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>spacemembers</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.spacemembers</groupId>
diff --git a/spaceMembers/spaceMembers-library/src/main/java/org/silverpeas/components/spacemembers/SpaceMembersStatistics.java b/spaceMembers/spaceMembers-library/src/main/java/org/silverpeas/components/spacemembers/SpaceMembersStatistics.java
index 19aa1e78f7..269fc6fbf7 100644
--- a/spaceMembers/spaceMembers-library/src/main/java/org/silverpeas/components/spacemembers/SpaceMembersStatistics.java
+++ b/spaceMembers/spaceMembers-library/src/main/java/org/silverpeas/components/spacemembers/SpaceMembersStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.spacemembers;
 
diff --git a/spaceMembers/spaceMembers-war/pom.xml b/spaceMembers/spaceMembers-war/pom.xml
index e2b19b0e4c..cea9e7f5a3 100644
--- a/spaceMembers/spaceMembers-war/pom.xml
+++ b/spaceMembers/spaceMembers-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>spacemembers</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.spacemembers</groupId>
diff --git a/spaceMembers/spaceMembers-war/src/main/java/org/silverpeas/components/spacemembers/SpaceMembersIndexer.java b/spaceMembers/spaceMembers-war/src/main/java/org/silverpeas/components/spacemembers/SpaceMembersIndexer.java
index e25aed7eee..b83aee91de 100644
--- a/spaceMembers/spaceMembers-war/src/main/java/org/silverpeas/components/spacemembers/SpaceMembersIndexer.java
+++ b/spaceMembers/spaceMembers-war/src/main/java/org/silverpeas/components/spacemembers/SpaceMembersIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.spacemembers;
 
diff --git a/spaceMembers/spaceMembers-war/src/main/java/org/silverpeas/components/spacemembers/control/SpaceMembersSessionController.java b/spaceMembers/spaceMembers-war/src/main/java/org/silverpeas/components/spacemembers/control/SpaceMembersSessionController.java
index 61fe2e4bf1..f6d6580e17 100644
--- a/spaceMembers/spaceMembers-war/src/main/java/org/silverpeas/components/spacemembers/control/SpaceMembersSessionController.java
+++ b/spaceMembers/spaceMembers-war/src/main/java/org/silverpeas/components/spacemembers/control/SpaceMembersSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.com/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.spacemembers.control;
 
diff --git a/spaceMembers/spaceMembers-war/src/main/java/org/silverpeas/components/spacemembers/servlets/SpaceMembersRequestRouter.java b/spaceMembers/spaceMembers-war/src/main/java/org/silverpeas/components/spacemembers/servlets/SpaceMembersRequestRouter.java
index 4f67639ca4..7c284a9f5f 100644
--- a/spaceMembers/spaceMembers-war/src/main/java/org/silverpeas/components/spacemembers/servlets/SpaceMembersRequestRouter.java
+++ b/spaceMembers/spaceMembers-war/src/main/java/org/silverpeas/components/spacemembers/servlets/SpaceMembersRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.spacemembers.servlets;
 
diff --git a/spaceMembers/spaceMembers-war/src/main/webapp/WEB-INF/web.xml b/spaceMembers/spaceMembers-war/src/main/webapp/WEB-INF/web.xml
index bb041d2f48..85fcd5c242 100644
--- a/spaceMembers/spaceMembers-war/src/main/webapp/WEB-INF/web.xml
+++ b/spaceMembers/spaceMembers-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/src/site/resources/css/site.css b/src/site/resources/css/site.css
index dcd403252c..73b852288c 100644
--- a/src/site/resources/css/site.css
+++ b/src/site/resources/css/site.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /* You can override this file with your own styles */
diff --git a/src/site/resources/css/style.css b/src/site/resources/css/style.css
index e133b802bc..4709ea67f1 100644
--- a/src/site/resources/css/style.css
+++ b/src/site/resources/css/style.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 
diff --git a/src/site/resources/css/tn3/tn3.css b/src/site/resources/css/tn3/tn3.css
index 7317eedaf6..10e26e6714 100644
--- a/src/site/resources/css/tn3/tn3.css
+++ b/src/site/resources/css/tn3/tn3.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 @charset "utf-8";
diff --git a/src/site/site.xml b/src/site/site.xml
index 49a2e252b6..0249fb1174 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml
index 147638e315..b8d571e3b0 100644
--- a/src/site/xdoc/index.xml
+++ b/src/site/xdoc/index.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/suggestionBox/pom.xml b/suggestionBox/pom.xml
index e7916afb51..f0afdcd422 100644
--- a/suggestionBox/pom.xml
+++ b/suggestionBox/pom.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.com/legal/licensing"
+    "https://www.silverpeas.org/legal/licensing"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,15 +21,15 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses />.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/suggestionBox/suggestionBox-configuration/pom.xml b/suggestionBox/suggestionBox-configuration/pom.xml
index a721138d79..a1686318ae 100644
--- a/suggestionBox/suggestionBox-configuration/pom.xml
+++ b/suggestionBox/suggestionBox-configuration/pom.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.com/legal/licensing"
+    "https://www.silverpeas.org/legal/licensing"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,15 +21,15 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses />.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>suggestionbox</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.suggestionbox</groupId>
diff --git a/suggestionBox/suggestionBox-configuration/src/main/config/migrations/modules/suggestion-box-migration.xml b/suggestionBox/suggestionBox-configuration/src/main/config/migrations/modules/suggestion-box-migration.xml
index cf2df86f0e..0d0ec0498e 100644
--- a/suggestionBox/suggestionBox-configuration/src/main/config/migrations/modules/suggestion-box-migration.xml
+++ b/suggestionBox/suggestionBox-configuration/src/main/config/migrations/modules/suggestion-box-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify it under the terms of the
   ~ GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -10,14 +10,14 @@
   ~ redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
   ~ applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
   ~ text describing the FLOSS exception, and it is also available here:
-  ~ "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  ~ "https://www.silverpeas.org/legal/floss_exception.html"
   ~
   ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
   ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   ~ Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License along with this program.
-  ~ If not, see <http://www.gnu.org/licenses/>.
+  ~ If not, see <https://www.gnu.org/licenses/>.
   -->
 <migration module="suggestionBox"
            xmlns="http://silverpeas.org/xml/ns/migration"
diff --git a/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle.properties b/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle.properties
index 47bdbfe21a..fc9e046f5b 100644
--- a/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle.properties
+++ b/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.com/legal/licensing"
+# "https://www.silverpeas.org/legal/licensing"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 suggestionBox.label.suggestion.the=L'id\u00e9e
diff --git a/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle_de.properties b/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle_de.properties
index 318ee7b31d..2bc63dede3 100644
--- a/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle_de.properties
+++ b/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.com/legal/licensing"
+# "https://www.silverpeas.org/legal/licensing"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 suggestionBox.label.suggestion.the=The suggestion
diff --git a/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle_en.properties b/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle_en.properties
index 318ee7b31d..2bc63dede3 100644
--- a/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle_en.properties
+++ b/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.com/legal/licensing"
+# "https://www.silverpeas.org/legal/licensing"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 suggestionBox.label.suggestion.the=The suggestion
diff --git a/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle_fr.properties b/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle_fr.properties
index 19c836a5bd..7c821294f1 100644
--- a/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle_fr.properties
+++ b/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/multilang/SuggestionBoxBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.com/legal/licensing"
+# "https://www.silverpeas.org/legal/licensing"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 suggestionBox.label.suggestion.the=L'id\u00e9e
diff --git a/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/settings/SuggestionBoxIcons.properties b/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/settings/SuggestionBoxIcons.properties
index 9adc06c1f8..4762709780 100644
--- a/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/settings/SuggestionBoxIcons.properties
+++ b/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/settings/SuggestionBoxIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.com/legal/licensing"
+# "https://www.silverpeas.org/legal/licensing"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 suggestionBox.deleteSuggestion = /util/icons/delete.gif
diff --git a/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/settings/SuggestionBoxSettings.properties b/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/settings/SuggestionBoxSettings.properties
index 254adca8a6..1b8ae39d49 100644
--- a/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/settings/SuggestionBoxSettings.properties
+++ b/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/components/suggestionbox/settings/SuggestionBoxSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception. You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 # Live time (in milliseconds) of displayed user notifications into the suggestion box
diff --git a/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/util/logging/suggestionBoxLogging.properties b/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/util/logging/suggestionBoxLogging.properties
index cc9ef199b4..28ed385fb0 100644
--- a/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/util/logging/suggestionBoxLogging.properties
+++ b/suggestionBox/suggestionBox-configuration/src/main/config/properties/org/silverpeas/util/logging/suggestionBoxLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/suggestionBox/suggestionBox-configuration/src/main/config/xmlcomponents/suggestionBox.xml b/suggestionBox/suggestionBox-configuration/src/main/config/xmlcomponents/suggestionBox.xml
index 5e12d9262e..1b8cb30c8a 100644
--- a/suggestionBox/suggestionBox-configuration/src/main/config/xmlcomponents/suggestionBox.xml
+++ b/suggestionBox/suggestionBox-configuration/src/main/config/xmlcomponents/suggestionBox.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.com/legal/licensing"
+    "https://www.silverpeas.org/legal/licensing"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <WAComponent xmlns="http://silverpeas.org/xml/ns/component" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
diff --git a/suggestionBox/suggestionBox-library/pom.xml b/suggestionBox/suggestionBox-library/pom.xml
index 4de0ddbd5f..a5c06df97d 100644
--- a/suggestionBox/suggestionBox-library/pom.xml
+++ b/suggestionBox/suggestionBox-library/pom.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.com/legal/licensing"
+    "https://www.silverpeas.org/legal/licensing"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,15 +21,15 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses />.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>suggestionbox</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.suggestionbox</groupId>
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxComponentSettings.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxComponentSettings.java
index 1004640b8d..3a9c2d945d 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxComponentSettings.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxComponentSettings.java
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxInstancePostConstruction.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxInstancePostConstruction.java
index fbd41fc553..86f60f8553 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxInstancePostConstruction.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxInstancePreDestruction.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxInstancePreDestruction.java
index 3a4723b11e..a2b9e03475 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxInstancePreDestruction.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/DefaultSuggestionBoxService.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/DefaultSuggestionBoxService.java
index e48fc3c039..0b2e579c5b 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/DefaultSuggestionBoxService.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/DefaultSuggestionBoxService.java
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.model;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/Suggestion.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/Suggestion.java
index aa14b79add..1bdb7df666 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/Suggestion.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/Suggestion.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.model;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionBox.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionBox.java
index 5a5fb0e10f..eabf6e23ea 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionBox.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionBox.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.model;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionBoxService.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionBoxService.java
index d12c3760f3..0917d0ce7b 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionBoxService.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionBoxService.java
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.model;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionCriteria.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionCriteria.java
index 251cf4c3de..7ffc3c1397 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionCriteria.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionCriteria.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.model;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionCriteriaProcessor.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionCriteriaProcessor.java
index 8ee51b4f6b..bf344464ea 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionCriteriaProcessor.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/SuggestionCriteriaProcessor.java
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.model;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/AbstractSuggestionActionUserNotification.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/AbstractSuggestionActionUserNotification.java
index 83dc152f11..ab460e7495 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/AbstractSuggestionActionUserNotification.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/AbstractSuggestionActionUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.notification;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/AbstractSuggestionBoxUserNotification.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/AbstractSuggestionBoxUserNotification.java
index 3a1ab046a4..ba3cf2f0fa 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/AbstractSuggestionBoxUserNotification.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/AbstractSuggestionBoxUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.notification;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/AbstractSuggestionUserNotification.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/AbstractSuggestionUserNotification.java
index e21ca8aa3b..c16a741b86 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/AbstractSuggestionUserNotification.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/AbstractSuggestionUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.notification;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionBoxInstanceManualUserNotification.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionBoxInstanceManualUserNotification.java
index 33aa01ea39..edf249541b 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionBoxInstanceManualUserNotification.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionBoxInstanceManualUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.suggestionbox.notification;
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionBoxSubscriptionUserNotification.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionBoxSubscriptionUserNotification.java
index 247345a94e..7ae9d4b630 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionBoxSubscriptionUserNotification.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionBoxSubscriptionUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.notification;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionNotifyManuallyUserNotification.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionNotifyManuallyUserNotification.java
index 12ec3d2da7..f421d768f0 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionNotifyManuallyUserNotification.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionNotifyManuallyUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.notification;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionPendingValidationUserNotification.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionPendingValidationUserNotification.java
index b16e3c2ad2..7578db422a 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionPendingValidationUserNotification.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionPendingValidationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.notification;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionValidationUserNotification.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionValidationUserNotification.java
index 1212a3b5e2..fee02ecb05 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionValidationUserNotification.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/notification/SuggestionValidationUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.notification;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/package-info.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/package-info.java
index e9ce37edd5..1096f7a2b1 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/package-info.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/package-info.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  * @author mmoquillon
  */
 package org.silverpeas.components.suggestionbox;
\ No newline at end of file
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/repository/JPQLQueryBuilder.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/repository/JPQLQueryBuilder.java
index cadb240ff6..6e7495ad8d 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/repository/JPQLQueryBuilder.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/repository/JPQLQueryBuilder.java
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.repository;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/repository/SuggestionBoxRepository.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/repository/SuggestionBoxRepository.java
index 23fee1d2a4..9000ff381b 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/repository/SuggestionBoxRepository.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/repository/SuggestionBoxRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.repository;
 
diff --git a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/repository/SuggestionRepository.java b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/repository/SuggestionRepository.java
index 5c7b9f8045..a3b0f2f067 100644
--- a/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/repository/SuggestionRepository.java
+++ b/suggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/repository/SuggestionRepository.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.repository;
 
diff --git a/suggestionBox/suggestionBox-war/pom.xml b/suggestionBox/suggestionBox-war/pom.xml
index 1f01895ff3..e89e30d78c 100644
--- a/suggestionBox/suggestionBox-war/pom.xml
+++ b/suggestionBox/suggestionBox-war/pom.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.com/legal/licensing"
+    "https://www.silverpeas.org/legal/licensing"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,15 +21,15 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses />.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>suggestionbox</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.suggestionbox</groupId>
diff --git a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxIndexer.java b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxIndexer.java
index 3db58a9f3d..935468c97b 100644
--- a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxIndexer.java
+++ b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/SuggestionBoxIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.com/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox;
 
diff --git a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/common/SuggestionBoxWebManager.java b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/common/SuggestionBoxWebManager.java
index 8b07c8d8b4..f3bdf23768 100644
--- a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/common/SuggestionBoxWebManager.java
+++ b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/common/SuggestionBoxWebManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.common;
 
diff --git a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/common/SuggestionFinderByCriteria.java b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/common/SuggestionFinderByCriteria.java
index 32fba04e68..19c22a3b3c 100644
--- a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/common/SuggestionFinderByCriteria.java
+++ b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/common/SuggestionFinderByCriteria.java
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.common;
 
diff --git a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/control/SuggestionBoxWebController.java b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/control/SuggestionBoxWebController.java
index eee539f64b..952c9bb01b 100644
--- a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/control/SuggestionBoxWebController.java
+++ b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/control/SuggestionBoxWebController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.com/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.control;
 
diff --git a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/control/SuggestionBoxWebRequestContext.java b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/control/SuggestionBoxWebRequestContext.java
index 05d515e41d..1866016cc9 100644
--- a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/control/SuggestionBoxWebRequestContext.java
+++ b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/control/SuggestionBoxWebRequestContext.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.control;
 
diff --git a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/package-info.java b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/package-info.java
index 1cf9e47dfa..d8d745f4e0 100644
--- a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/package-info.java
+++ b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/package-info.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  * @author mmoquillon
  */
 package org.silverpeas.components.suggestionbox;
diff --git a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/AbstractSuggestionBoxResource.java b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/AbstractSuggestionBoxResource.java
index ecf782e8a0..2cb8eea3dc 100644
--- a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/AbstractSuggestionBoxResource.java
+++ b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/AbstractSuggestionBoxResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.web;
 
diff --git a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/SuggestionBoxResource.java b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/SuggestionBoxResource.java
index fe85301256..a521ed898d 100644
--- a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/SuggestionBoxResource.java
+++ b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/SuggestionBoxResource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.web;
 
diff --git a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/SuggestionBoxResourceURIs.java b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/SuggestionBoxResourceURIs.java
index c7e802353f..901a5ba24b 100644
--- a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/SuggestionBoxResourceURIs.java
+++ b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/SuggestionBoxResourceURIs.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.web;
 
diff --git a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/SuggestionEntity.java b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/SuggestionEntity.java
index e22bbbfd80..432f693889 100644
--- a/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/SuggestionEntity.java
+++ b/suggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/SuggestionEntity.java
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.suggestionbox.web;
 
diff --git a/suggestionBox/suggestionBox-war/src/main/webapp/WEB-INF/web.xml b/suggestionBox/suggestionBox-war/src/main/webapp/WEB-INF/web.xml
index 954a11bf36..0c58c4eb3f 100644
--- a/suggestionBox/suggestionBox-war/src/main/webapp/WEB-INF/web.xml
+++ b/suggestionBox/suggestionBox-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.com/legal/licensing"
+    "https://www.silverpeas.org/legal/licensing"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <web-app>
diff --git a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/check.jsp b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/check.jsp
index 295f4f7278..98dc83a23d 100644
--- a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/check.jsp
+++ b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.com/legal/licensing"
+    "https://www.silverpeas.org/legal/licensing"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%
diff --git a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/directives/suggestionbox-deletion.js b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/directives/suggestionbox-deletion.js
index 11e551f846..7b21b9e6b6 100644
--- a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/directives/suggestionbox-deletion.js
+++ b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/directives/suggestionbox-deletion.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 (function() {
diff --git a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/directives/suggestionbox-validation.js b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/directives/suggestionbox-validation.js
index 22a89ffbd7..dbdd52993c 100644
--- a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/directives/suggestionbox-validation.js
+++ b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/directives/suggestionbox-validation.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 (function() {
diff --git a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/services/suggestionbox.js b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/services/suggestionbox.js
index 51cc7cb618..a31145841d 100644
--- a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/services/suggestionbox.js
+++ b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/services/suggestionbox.js
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 var services = angular.module('silverpeas.services');
 
diff --git a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/suggestionbox.js b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/suggestionbox.js
index 2b1ee63efd..908e014f77 100644
--- a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/suggestionbox.js
+++ b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/javaScript/angularjs/suggestionbox.js
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /* The angularjs application with its dependencies */
diff --git a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/styleSheets/suggestionBox.css b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/styleSheets/suggestionBox.css
index 43834ff078..59486967bf 100644
--- a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/styleSheets/suggestionBox.css
+++ b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/styleSheets/suggestionBox.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://repository.silverpeas.com/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 .suggestion-title {
diff --git a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionBox.jsp b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionBox.jsp
index 905f51c65e..b0e5964873 100644
--- a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionBox.jsp
+++ b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionBox.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.com/legal/licensing"
+    "https://www.silverpeas.org/legal/licensing"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ include file="check.jsp" %>
diff --git a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionEdit.jsp b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionEdit.jsp
index 8ec36930a5..0caf6cfd42 100644
--- a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionEdit.jsp
+++ b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionEdit.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.com/legal/licensing"
+    "https://www.silverpeas.org/legal/licensing"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ include file="check.jsp" %>
diff --git a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionList.jsp b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionList.jsp
index 3d73f4989d..f9d7d5c7cb 100644
--- a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionList.jsp
+++ b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionList.jsp
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ include file="check.jsp" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionView.jsp b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionView.jsp
index 6243074c2f..41d4bca9c2 100644
--- a/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionView.jsp
+++ b/suggestionBox/suggestionBox-war/src/main/webapp/suggestionBox/jsp/suggestionView.jsp
@@ -1,5 +1,5 @@
 <%@ page import="org.silverpeas.core.notification.user.NotificationContext" %><%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
 
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ include file="check.jsp" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/survey/pom.xml b/survey/pom.xml
index fe7ca29af7..7986bea201 100644
--- a/survey/pom.xml
+++ b/survey/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
   
   <groupId>org.silverpeas.components</groupId>
diff --git a/survey/survey-configuration/pom.xml b/survey/survey-configuration/pom.xml
index e045c2def8..7dc60d787e 100644
--- a/survey/survey-configuration/pom.xml
+++ b/survey/survey-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>survey</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.survey</groupId>
diff --git a/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle.properties b/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle.properties
index 760aa09c7b..cc8421ff99 100644
--- a/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle.properties
+++ b/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 SurveyClosingDate = Date de cloture
 SurveyOpeningDate = Date d'ouverture
diff --git a/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle_de.properties b/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle_de.properties
index 98aac1f36d..9d459513b9 100644
--- a/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle_de.properties
+++ b/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 SurveyClosingDate = Schlussdatum
 SurveyOpeningDate = \u00d6ffnungsdatum
diff --git a/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle_en.properties b/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle_en.properties
index cc11f88683..7e68fdbcac 100644
--- a/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle_en.properties
+++ b/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 SurveyClosingDate = Closing date
 SurveyOpeningDate = Opening date
diff --git a/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle_fr.properties b/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle_fr.properties
index 938995fdf4..c337e3cb3e 100644
--- a/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle_fr.properties
+++ b/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/multilang/surveyBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 SurveyClosingDate = Date de cloture
 SurveyOpeningDate = Date d'ouverture
diff --git a/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/surveySettings.properties b/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/surveySettings.properties
index 55726a7286..5500f80542 100644
--- a/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/surveySettings.properties
+++ b/survey/survey-configuration/src/main/config/properties/org/silverpeas/survey/surveySettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 imagesSubDirectory = images
 
diff --git a/survey/survey-configuration/src/main/config/properties/org/silverpeas/util/logging/surveyLogging.properties b/survey/survey-configuration/src/main/config/properties/org/silverpeas/util/logging/surveyLogging.properties
index b5470e9674..8ed7cb56c6 100644
--- a/survey/survey-configuration/src/main/config/properties/org/silverpeas/util/logging/surveyLogging.properties
+++ b/survey/survey-configuration/src/main/config/properties/org/silverpeas/util/logging/surveyLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/survey/survey-configuration/src/main/config/xmlcomponents/pollingStation.xml b/survey/survey-configuration/src/main/config/xmlcomponents/pollingStation.xml
index 934c55aef7..c77125d3e8 100644
--- a/survey/survey-configuration/src/main/config/xmlcomponents/pollingStation.xml
+++ b/survey/survey-configuration/src/main/config/xmlcomponents/pollingStation.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/survey/survey-configuration/src/main/config/xmlcomponents/survey.xml b/survey/survey-configuration/src/main/config/xmlcomponents/survey.xml
index a6fc3a1426..a803e8fec0 100644
--- a/survey/survey-configuration/src/main/config/xmlcomponents/survey.xml
+++ b/survey/survey-configuration/src/main/config/xmlcomponents/survey.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/survey/survey-library/pom.xml b/survey/survey-library/pom.xml
index a61d6b2eda..d58953e58a 100644
--- a/survey/survey-library/pom.xml
+++ b/survey/survey-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>survey</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.survey</groupId>
diff --git a/survey/survey-library/src/main/java/org/silverpeas/components/survey/SurveyContentManager.java b/survey/survey-library/src/main/java/org/silverpeas/components/survey/SurveyContentManager.java
index 85d76ab0f9..06bf64cd1f 100644
--- a/survey/survey-library/src/main/java/org/silverpeas/components/survey/SurveyContentManager.java
+++ b/survey/survey-library/src/main/java/org/silverpeas/components/survey/SurveyContentManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,11 +19,11 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -43,7 +43,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.survey;
 
diff --git a/survey/survey-library/src/main/java/org/silverpeas/components/survey/SurveyException.java b/survey/survey-library/src/main/java/org/silverpeas/components/survey/SurveyException.java
index d2735d88b8..95b21e4c9e 100644
--- a/survey/survey-library/src/main/java/org/silverpeas/components/survey/SurveyException.java
+++ b/survey/survey-library/src/main/java/org/silverpeas/components/survey/SurveyException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,11 +19,11 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -43,7 +43,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.survey;
 
diff --git a/survey/survey-library/src/main/java/org/silverpeas/components/survey/SurveyStatistics.java b/survey/survey-library/src/main/java/org/silverpeas/components/survey/SurveyStatistics.java
index ba0ed88d63..620de9080d 100644
--- a/survey/survey-library/src/main/java/org/silverpeas/components/survey/SurveyStatistics.java
+++ b/survey/survey-library/src/main/java/org/silverpeas/components/survey/SurveyStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,11 +19,11 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -43,7 +43,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.survey;
 
diff --git a/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/AbstractSurveyUserNotification.java b/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/AbstractSurveyUserNotification.java
index 30c34e6792..616260f7b3 100644
--- a/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/AbstractSurveyUserNotification.java
+++ b/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/AbstractSurveyUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.survey.notification;
diff --git a/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/PollingStationInstanceManualUserNotification.java b/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/PollingStationInstanceManualUserNotification.java
index 727adf3285..815175e663 100644
--- a/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/PollingStationInstanceManualUserNotification.java
+++ b/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/PollingStationInstanceManualUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.survey.notification;
diff --git a/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/SurveyInstanceManualUserNotification.java b/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/SurveyInstanceManualUserNotification.java
index 88905a879d..6880393ce1 100644
--- a/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/SurveyInstanceManualUserNotification.java
+++ b/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/SurveyInstanceManualUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.survey.notification;
diff --git a/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/SurveyUserAlertNotification.java b/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/SurveyUserAlertNotification.java
index c08d868324..4f6f4d4d71 100644
--- a/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/SurveyUserAlertNotification.java
+++ b/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/SurveyUserAlertNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.survey.notification;
diff --git a/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/SurveyUserNotification.java b/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/SurveyUserNotification.java
index 48b1cd6d89..d742476e61 100644
--- a/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/SurveyUserNotification.java
+++ b/survey/survey-library/src/main/java/org/silverpeas/components/survey/notification/SurveyUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,11 +19,11 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -43,7 +43,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.survey.notification;
 
diff --git a/survey/survey-war/pom.xml b/survey/survey-war/pom.xml
index 06770fb5e3..a7c7f7c536 100644
--- a/survey/survey-war/pom.xml
+++ b/survey/survey-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>survey</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.survey</groupId>
diff --git a/survey/survey-war/src/main/java/org/silverpeas/components/survey/SurveyIndexer.java b/survey/survey-war/src/main/java/org/silverpeas/components/survey/SurveyIndexer.java
index 6841965c48..8cdb0e2e79 100644
--- a/survey/survey-war/src/main/java/org/silverpeas/components/survey/SurveyIndexer.java
+++ b/survey/survey-war/src/main/java/org/silverpeas/components/survey/SurveyIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,11 +19,11 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -43,7 +43,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.survey;
 
diff --git a/survey/survey-war/src/main/java/org/silverpeas/components/survey/control/FileHelper.java b/survey/survey-war/src/main/java/org/silverpeas/components/survey/control/FileHelper.java
index a621201f0e..c402267ded 100644
--- a/survey/survey-war/src/main/java/org/silverpeas/components/survey/control/FileHelper.java
+++ b/survey/survey-war/src/main/java/org/silverpeas/components/survey/control/FileHelper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,11 +19,11 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -43,7 +43,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/survey/survey-war/src/main/java/org/silverpeas/components/survey/control/SurveySessionController.java b/survey/survey-war/src/main/java/org/silverpeas/components/survey/control/SurveySessionController.java
index e186b2e7be..1f87055f9f 100644
--- a/survey/survey-war/src/main/java/org/silverpeas/components/survey/control/SurveySessionController.java
+++ b/survey/survey-war/src/main/java/org/silverpeas/components/survey/control/SurveySessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.survey.control;
 
diff --git a/survey/survey-war/src/main/java/org/silverpeas/components/survey/servlets/GoToSurvey.java b/survey/survey-war/src/main/java/org/silverpeas/components/survey/servlets/GoToSurvey.java
index 0a556c9171..ddb4ff5106 100644
--- a/survey/survey-war/src/main/java/org/silverpeas/components/survey/servlets/GoToSurvey.java
+++ b/survey/survey-war/src/main/java/org/silverpeas/components/survey/servlets/GoToSurvey.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,11 +19,11 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -43,7 +43,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.survey.servlets;
 
diff --git a/survey/survey-war/src/main/java/org/silverpeas/components/survey/servlets/RecordParticipation.java b/survey/survey-war/src/main/java/org/silverpeas/components/survey/servlets/RecordParticipation.java
index 029e1c5dc1..5adb9e35f7 100644
--- a/survey/survey-war/src/main/java/org/silverpeas/components/survey/servlets/RecordParticipation.java
+++ b/survey/survey-war/src/main/java/org/silverpeas/components/survey/servlets/RecordParticipation.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,11 +19,11 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -43,7 +43,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.survey.servlets;
diff --git a/survey/survey-war/src/main/java/org/silverpeas/components/survey/servlets/SurveyRequestRouter.java b/survey/survey-war/src/main/java/org/silverpeas/components/survey/servlets/SurveyRequestRouter.java
index b2a81af54f..686141f54e 100644
--- a/survey/survey-war/src/main/java/org/silverpeas/components/survey/servlets/SurveyRequestRouter.java
+++ b/survey/survey-war/src/main/java/org/silverpeas/components/survey/servlets/SurveyRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,11 +19,11 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -43,7 +43,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.survey.servlets;
diff --git a/survey/survey-war/src/main/webapp/WEB-INF/web.xml b/survey/survey-war/src/main/webapp/WEB-INF/web.xml
index b1b68806ab..ef9cb03bfd 100644
--- a/survey/survey-war/src/main/webapp/WEB-INF/web.xml
+++ b/survey/survey-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <web-app>
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/answerResult.jsp b/survey/survey-war/src/main/webapp/survey/jsp/answerResult.jsp
index 8c5184ac0e..e1bbe9b378 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/answerResult.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/answerResult.jsp
@@ -2,7 +2,7 @@
 <%@ page import="org.silverpeas.core.questioncontainer.container.model.QuestionContainerDetail" %>
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -14,7 +14,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -22,7 +22,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/checkSurvey.jsp b/survey/survey-war/src/main/webapp/survey/jsp/checkSurvey.jsp
index a0714152ae..69fc1ce8e9 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/checkSurvey.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/checkSurvey.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/errorpage.jsp b/survey/survey-war/src/main/webapp/survey/jsp/errorpage.jsp
index 379ba57d8b..ccc7f9b9d3 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/errorpage.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/errorpage.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/manageQuestions.jsp b/survey/survey-war/src/main/webapp/survey/jsp/manageQuestions.jsp
index 0ae4863f8e..7ab74aae5c 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/manageQuestions.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/manageQuestions.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/pollCreator.jsp b/survey/survey-war/src/main/webapp/survey/jsp/pollCreator.jsp
index 681cca2070..ad2db2d793 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/pollCreator.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/pollCreator.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/portlet.jsp b/survey/survey-war/src/main/webapp/survey/jsp/portlet.jsp
index bc20dc8448..aae9ca01f0 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/portlet.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/portlet.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/questionCreator.jsp b/survey/survey-war/src/main/webapp/survey/jsp/questionCreator.jsp
index c7e10be5d6..8cb7feb7c4 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/questionCreator.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/questionCreator.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/questionCreatorBis.jsp b/survey/survey-war/src/main/webapp/survey/jsp/questionCreatorBis.jsp
index 5430c222af..9dd3e3be23 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/questionCreatorBis.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/questionCreatorBis.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/questionsUpdate.jsp b/survey/survey-war/src/main/webapp/survey/jsp/questionsUpdate.jsp
index 297897f5e4..3f17c4e09e 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/questionsUpdate.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/questionsUpdate.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/resultByUser.jsp b/survey/survey-war/src/main/webapp/survey/jsp/resultByUser.jsp
index 490d4a7d4b..cfb797b701 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/resultByUser.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/resultByUser.jsp
@@ -1,6 +1,6 @@
 <%@ page import="org.silverpeas.core.util.SettingBundle" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/styleSheets/survey.css b/survey/survey-war/src/main/webapp/survey/jsp/styleSheets/survey.css
index c065d1ff6d..4c002a5343 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/styleSheets/survey.css
+++ b/survey/survey-war/src/main/webapp/survey/jsp/styleSheets/survey.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 /* tableau Doodle */
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/surveyCreator.jsp b/survey/survey-war/src/main/webapp/survey/jsp/surveyCreator.jsp
index 255971a27c..377735839f 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/surveyCreator.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/surveyCreator.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/surveyDetail.jsp b/survey/survey-war/src/main/webapp/survey/jsp/surveyDetail.jsp
index 6e65ca4c3c..c66eb1122b 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/surveyDetail.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/surveyDetail.jsp
@@ -5,7 +5,7 @@
 <%@ page import="org.owasp.encoder.Encode" %>
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -17,7 +17,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -25,7 +25,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/surveyList.jsp b/survey/survey-war/src/main/webapp/survey/jsp/surveyList.jsp
index 61f4a37d87..3f134f26d3 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/surveyList.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/surveyList.jsp
@@ -3,7 +3,7 @@
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.operationpanes.OperationPane" %>
 <%@ page import="org.silverpeas.core.util.WebEncodeHelper" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -15,7 +15,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -23,7 +23,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/surveySuggestions.jsp b/survey/survey-war/src/main/webapp/survey/jsp/surveySuggestions.jsp
index 4c6611107b..d236619d0e 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/surveySuggestions.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/surveySuggestions.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/survey/survey-war/src/main/webapp/survey/jsp/surveyUpdate.jsp b/survey/survey-war/src/main/webapp/survey/jsp/surveyUpdate.jsp
index b46f2b2882..4570a68094 100644
--- a/survey/survey-war/src/main/webapp/survey/jsp/surveyUpdate.jsp
+++ b/survey/survey-war/src/main/webapp/survey/jsp/surveyUpdate.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/webPages/pom.xml b/webPages/pom.xml
index 7b8be27214..fbc39d7481 100644
--- a/webPages/pom.xml
+++ b/webPages/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/webPages/webPages-configuration/pom.xml b/webPages/webPages-configuration/pom.xml
index f9830ce5ec..f334b9e36f 100644
--- a/webPages/webPages-configuration/pom.xml
+++ b/webPages/webPages-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>webpages</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.webpages</groupId>
diff --git a/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/util/logging/webpagesLogging.properties b/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/util/logging/webpagesLogging.properties
index 54d976e076..f19dbf4f95 100644
--- a/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/util/logging/webpagesLogging.properties
+++ b/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/util/logging/webpagesLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle.properties b/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle.properties
index 6a63696688..67699b5ad3 100644
--- a/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle.properties
+++ b/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 webPages.edit = Modifier la page
 webPages.emptyPage = Page en construction
diff --git a/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle_de.properties b/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle_de.properties
index bbfc4b1805..f7ae0bf91a 100644
--- a/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle_de.properties
+++ b/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 webPages.edit = Editierseite
 webPages.emptyPage = Seite in Arbeit
diff --git a/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle_en.properties b/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle_en.properties
index 238396c984..0e88c66def 100644
--- a/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle_en.properties
+++ b/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 webPages.edit = Edit the page
 webPages.emptyPage = Page under construction
diff --git a/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle_fr.properties b/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle_fr.properties
index 777b6b91f4..85c6b44be3 100644
--- a/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle_fr.properties
+++ b/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/multilang/webPagesBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 webPages.edit = Modifier la page
 webPages.emptyPage = Page en construction
diff --git a/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/settings/webPagesIcons.properties b/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/settings/webPagesIcons.properties
index fbad04c7c7..5740196e17 100644
--- a/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/settings/webPagesIcons.properties
+++ b/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/settings/webPagesIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,6 +19,6 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 webPages.underConstruction = /webPages/jsp/icons/underConst.gif
\ No newline at end of file
diff --git a/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/settings/webPagesSettings.properties b/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/settings/webPagesSettings.properties
index cbf0d4a895..20320ad242 100644
--- a/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/settings/webPagesSettings.properties
+++ b/webPages/webPages-configuration/src/main/config/properties/org/silverpeas/webpages/settings/webPagesSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 templatePath=${env.SILVERPEAS_HOME}/resources/StringTemplates/components/webpages/
diff --git a/webPages/webPages-configuration/src/main/config/xmlcomponents/webPages.xml b/webPages/webPages-configuration/src/main/config/xmlcomponents/webPages.xml
index e7487d0ff7..2efd53d43e 100644
--- a/webPages/webPages-configuration/src/main/config/xmlcomponents/webPages.xml
+++ b/webPages/webPages-configuration/src/main/config/xmlcomponents/webPages.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/webPages/webPages-library/pom.xml b/webPages/webPages-library/pom.xml
index ea880a3ea4..8e8138346d 100644
--- a/webPages/webPages-library/pom.xml
+++ b/webPages/webPages-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>webpages</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.webpages</groupId>
diff --git a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/WebPagesInstancePreDestruction.java b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/WebPagesInstancePreDestruction.java
index 937ae3f111..b224490916 100644
--- a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/WebPagesInstancePreDestruction.java
+++ b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/WebPagesInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.webpages;
 
diff --git a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/WebPagesStatistics.java b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/WebPagesStatistics.java
index a2e810fafe..5fa8b89047 100644
--- a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/WebPagesStatistics.java
+++ b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/WebPagesStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.webpages;
 
diff --git a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/WebPagesWysiwygEventListener.java b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/WebPagesWysiwygEventListener.java
index 573f88ac43..2d52a0729d 100644
--- a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/WebPagesWysiwygEventListener.java
+++ b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/WebPagesWysiwygEventListener.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.webpages;
 
diff --git a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/model/WebPagesException.java b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/model/WebPagesException.java
index a0cd7431b5..2f1c721acb 100644
--- a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/model/WebPagesException.java
+++ b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/model/WebPagesException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.webpages.model;
 
diff --git a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/model/WebPagesRuntimeException.java b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/model/WebPagesRuntimeException.java
index 3d60627ac0..4a81efe979 100644
--- a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/model/WebPagesRuntimeException.java
+++ b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/model/WebPagesRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.webpages.model;
 
diff --git a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/notification/WebPagesInstanceManualUserNotification.java b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/notification/WebPagesInstanceManualUserNotification.java
index db393c6eb4..520c92a125 100644
--- a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/notification/WebPagesInstanceManualUserNotification.java
+++ b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/notification/WebPagesInstanceManualUserNotification.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.webpages.notification;
diff --git a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/notification/WebPagesUserAlertNotifier.java b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/notification/WebPagesUserAlertNotifier.java
index c4a8357fe6..9aba5dc0be 100644
--- a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/notification/WebPagesUserAlertNotifier.java
+++ b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/notification/WebPagesUserAlertNotifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.webpages.notification;
 
diff --git a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/notification/WebPagesUserNotifier.java b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/notification/WebPagesUserNotifier.java
index fcf1a490e1..69f084b370 100644
--- a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/notification/WebPagesUserNotifier.java
+++ b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/notification/WebPagesUserNotifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.webpages.notification;
 
diff --git a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/package-info.java b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/package-info.java
index 02fef5ae1d..7d66612979 100644
--- a/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/package-info.java
+++ b/webPages/webPages-library/src/main/java/org/silverpeas/components/webpages/package-info.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  * @author mmoquillon
  */
 package org.silverpeas.components.webpages;
diff --git a/webPages/webPages-war/pom.xml b/webPages/webPages-war/pom.xml
index 6febcd1cdf..5248c83661 100644
--- a/webPages/webPages-war/pom.xml
+++ b/webPages/webPages-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>webpages</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.webpages</groupId>
diff --git a/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/WebPagesIndexer.java b/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/WebPagesIndexer.java
index 6e9951585a..fb4ebc032b 100644
--- a/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/WebPagesIndexer.java
+++ b/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/WebPagesIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.webpages;
diff --git a/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/control/WebPagesSessionController.java b/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/control/WebPagesSessionController.java
index c8ad0f7e01..46f58706ba 100644
--- a/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/control/WebPagesSessionController.java
+++ b/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/control/WebPagesSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.webpages.control;
 
diff --git a/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/package-info.java b/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/package-info.java
index 02fef5ae1d..7d66612979 100644
--- a/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/package-info.java
+++ b/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/package-info.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  * @author mmoquillon
  */
 package org.silverpeas.components.webpages;
diff --git a/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/servlets/WebPagesRequestRouter.java b/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/servlets/WebPagesRequestRouter.java
index 23a2c68312..70a81e22be 100644
--- a/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/servlets/WebPagesRequestRouter.java
+++ b/webPages/webPages-war/src/main/java/org/silverpeas/components/webpages/servlets/WebPagesRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.webpages.servlets;
 
diff --git a/webPages/webPages-war/src/main/webapp/WEB-INF/web.xml b/webPages/webPages-war/src/main/webapp/WEB-INF/web.xml
index 135160c9c1..0d22559cfa 100644
--- a/webPages/webPages-war/src/main/webapp/WEB-INF/web.xml
+++ b/webPages/webPages-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/webPages/webPages-war/src/main/webapp/webPages/jsp/check.jsp b/webPages/webPages-war/src/main/webapp/webPages/jsp/check.jsp
index adb09b441e..05b471281e 100644
--- a/webPages/webPages-war/src/main/webapp/webPages/jsp/check.jsp
+++ b/webPages/webPages-war/src/main/webapp/webPages/jsp/check.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/webPages/webPages-war/src/main/webapp/webPages/jsp/display.jsp b/webPages/webPages-war/src/main/webapp/webPages/jsp/display.jsp
index 7b0c70f328..f332377e56 100644
--- a/webPages/webPages-war/src/main/webapp/webPages/jsp/display.jsp
+++ b/webPages/webPages-war/src/main/webapp/webPages/jsp/display.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/webPages/webPages-war/src/main/webapp/webPages/jsp/editXMLContent.jsp b/webPages/webPages-war/src/main/webapp/webPages/jsp/editXMLContent.jsp
index 348057af2c..b1758a4e76 100644
--- a/webPages/webPages-war/src/main/webapp/webPages/jsp/editXMLContent.jsp
+++ b/webPages/webPages-war/src/main/webapp/webPages/jsp/editXMLContent.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
@@ -46,6 +46,9 @@
   context.setObjectId("0");
   context.setBorderPrinted(false);
   context.setShowMandatorySnippet(!otherFormDefined);
+  if (formUpdate.getData().isNew()) {
+    context.setCreation(true);
+  }
 %>
 
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
diff --git a/webPages/webPages-war/src/main/webapp/webPages/jsp/styleSheets/webPages-print.css b/webPages/webPages-war/src/main/webapp/webPages/jsp/styleSheets/webPages-print.css
index 00592787fb..a582415e86 100644
--- a/webPages/webPages-war/src/main/webapp/webPages/jsp/styleSheets/webPages-print.css
+++ b/webPages/webPages-war/src/main/webapp/webPages/jsp/styleSheets/webPages-print.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://repository.silverpeas.com/legal/licensing"
+ * "https://www.silverpeas.org/legal/licensing"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,5 +19,5 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
diff --git a/webSites/pom.xml b/webSites/pom.xml
index de5a6bd498..c76c1deb41 100644
--- a/webSites/pom.xml
+++ b/webSites/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/webSites/webSites-configuration/pom.xml b/webSites/webSites-configuration/pom.xml
index a57f326c02..0abcb61e29 100644
--- a/webSites/webSites-configuration/pom.xml
+++ b/webSites/webSites-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>websites</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.websites</groupId>
diff --git a/webSites/webSites-configuration/src/main/config/migrations/modules/webSites-migration.xml b/webSites/webSites-configuration/src/main/config/migrations/modules/webSites-migration.xml
index 6dbe9b5429..0ee6eddd63 100644
--- a/webSites/webSites-configuration/src/main/config/migrations/modules/webSites-migration.xml
+++ b/webSites/webSites-configuration/src/main/config/migrations/modules/webSites-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify it under the terms of the
   ~ GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -10,14 +10,14 @@
   ~ redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
   ~ applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
   ~ text describing the FLOSS exception, and it is also available here:
-  ~ "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  ~ "https://www.silverpeas.org/legal/floss_exception.html"
   ~
   ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
   ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   ~ Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License along with this program.
-  ~ If not, see <http://www.gnu.org/licenses/>.
+  ~ If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <migration module="webSites"
diff --git a/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/util/logging/webSitesLogging.properties b/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/util/logging/webSitesLogging.properties
index 8324e7013e..122cabede6 100644
--- a/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/util/logging/webSitesLogging.properties
+++ b/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/util/logging/webSitesLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle.properties b/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle.properties
index 0117d5a678..784d890e42 100644
--- a/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle.properties
+++ b/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 ListeSites = Liste des sites
 SitePublie = Publi\u00E9
diff --git a/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle_de.properties b/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle_de.properties
index 5e48fd93c4..5e0fbef70c 100644
--- a/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle_de.properties
+++ b/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 ListeSites = Liste der Sites
 SitePublie = Ver\u00f6ffentlicht
diff --git a/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle_en.properties b/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle_en.properties
index 0b669e2555..d9ab562cb3 100644
--- a/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle_en.properties
+++ b/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 ListeSites = List of websites
 SitePublie = Published
diff --git a/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle_fr.properties b/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle_fr.properties
index 0117d5a678..784d890e42 100644
--- a/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle_fr.properties
+++ b/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/multilang/webSiteBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 ListeSites = Liste des sites
 SitePublie = Publi\u00E9
diff --git a/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/settings/webSiteSettings.properties b/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/settings/webSiteSettings.properties
index 404311fe9d..0fc85e903f 100644
--- a/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/settings/webSiteSettings.properties
+++ b/webSites/webSites-configuration/src/main/config/properties/org/silverpeas/webSites/settings/webSiteSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 Machine =
diff --git a/webSites/webSites-configuration/src/main/config/xmlcomponents/bookmark.xml b/webSites/webSites-configuration/src/main/config/xmlcomponents/bookmark.xml
index 38656650f6..f649ddcb15 100644
--- a/webSites/webSites-configuration/src/main/config/xmlcomponents/bookmark.xml
+++ b/webSites/webSites-configuration/src/main/config/xmlcomponents/bookmark.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/webSites/webSites-configuration/src/main/config/xmlcomponents/webSites.xml b/webSites/webSites-configuration/src/main/config/xmlcomponents/webSites.xml
index c78b9862d4..4922efa9d6 100644
--- a/webSites/webSites-configuration/src/main/config/xmlcomponents/webSites.xml
+++ b/webSites/webSites-configuration/src/main/config/xmlcomponents/webSites.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/webSites/webSites-library/pom.xml b/webSites/webSites-library/pom.xml
index 4797a91f4f..809f3bcd40 100644
--- a/webSites/webSites-library/pom.xml
+++ b/webSites/webSites-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>websites</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.websites</groupId>
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/BookmarkInstancePostConstruction.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/BookmarkInstancePostConstruction.java
index 69937d241c..baf8ab6bc3 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/BookmarkInstancePostConstruction.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/BookmarkInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites;
 
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/BookmarkInstancePreDestruction.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/BookmarkInstancePreDestruction.java
index 814a1f0add..6638d55c0b 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/BookmarkInstancePreDestruction.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/BookmarkInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites;
 
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesContentManager.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesContentManager.java
index 505ede4ab0..e38eedae78 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesContentManager.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesContentManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites;
 
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesInstancePostConstruction.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesInstancePostConstruction.java
index c802119aee..28f211c62c 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesInstancePostConstruction.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites;
 
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesInstancePreDestruction.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesInstancePreDestruction.java
index be0d1cfd74..829b941584 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesInstancePreDestruction.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites;
 
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesStatistics.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesStatistics.java
index 2523402cf5..75fc2921c5 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesStatistics.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/WebSitesStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites;
 
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/dao/SiteDAO.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/dao/SiteDAO.java
index af73af41be..99659bee8a 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/dao/SiteDAO.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/dao/SiteDAO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites.dao;
 
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/FolderDetail.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/FolderDetail.java
index ec8d62c323..6058a1667f 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/FolderDetail.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/FolderDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites.model;
 
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/IconDetail.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/IconDetail.java
index 1a5cd7bac6..41e253299d 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/IconDetail.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/IconDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites.model;
 
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/SiteDetail.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/SiteDetail.java
index 352d3971a6..43a1ff8298 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/SiteDetail.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/SiteDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites.model;
 
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/SitePK.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/SitePK.java
index 2e7a46cb9c..c243afdd2c 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/SitePK.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/SitePK.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/WebSitesRuntimeException.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/WebSitesRuntimeException.java
index 415fc36643..22dcc46c27 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/WebSitesRuntimeException.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/model/WebSitesRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites.model;
 
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/service/DefaultWebSiteService.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/service/DefaultWebSiteService.java
index d552ca7091..9a28464d94 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/service/DefaultWebSiteService.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/service/DefaultWebSiteService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites.service;
 
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/service/WebSiteService.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/service/WebSiteService.java
index 331381d706..446081abef 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/service/WebSiteService.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/service/WebSiteService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites.service;
 
diff --git a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/service/WebSitesException.java b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/service/WebSitesException.java
index 4b00e0e564..8f8cca4be5 100644
--- a/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/service/WebSitesException.java
+++ b/webSites/webSites-library/src/main/java/org/silverpeas/components/websites/service/WebSitesException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites.service;
 
diff --git a/webSites/webSites-war/pom.xml b/webSites/webSites-war/pom.xml
index e00fbff080..242f0bcb9f 100644
--- a/webSites/webSites-war/pom.xml
+++ b/webSites/webSites-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>websites</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.websites</groupId>
diff --git a/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/BookmarkIndexer.java b/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/BookmarkIndexer.java
index 6a89a0edbc..bb867673ca 100644
--- a/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/BookmarkIndexer.java
+++ b/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/BookmarkIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites;
 
diff --git a/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/WebSitesIndexer.java b/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/WebSitesIndexer.java
index d0cf16cf4f..86fcf78f32 100644
--- a/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/WebSitesIndexer.java
+++ b/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/WebSitesIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites;
 
diff --git a/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/control/WebSiteSessionController.java b/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/control/WebSiteSessionController.java
index a25a4655fb..05d2bef80b 100644
--- a/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/control/WebSiteSessionController.java
+++ b/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/control/WebSiteSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites.control;
 
diff --git a/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/servlets/WebSitesRequestRouter.java b/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/servlets/WebSitesRequestRouter.java
index c5af53a1a3..7d31e7fd60 100644
--- a/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/servlets/WebSitesRequestRouter.java
+++ b/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/servlets/WebSitesRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites.servlets;
 
diff --git a/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/servlets/WebSitesUtil.java b/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/servlets/WebSitesUtil.java
index 963dd874d7..2f8c0b6ed5 100644
--- a/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/servlets/WebSitesUtil.java
+++ b/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/servlets/WebSitesUtil.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites.servlets;
 
diff --git a/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/servlets/design/SiteDesignActionHandler.java b/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/servlets/design/SiteDesignActionHandler.java
index d2f810970d..d4515d636e 100644
--- a/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/servlets/design/SiteDesignActionHandler.java
+++ b/webSites/webSites-war/src/main/java/org/silverpeas/components/websites/servlets/design/SiteDesignActionHandler.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.websites.servlets.design;
 
diff --git a/webSites/webSites-war/src/main/webapp/WEB-INF/web.xml b/webSites/webSites-war/src/main/webapp/WEB-INF/web.xml
index 083b880c31..9fc5f98509 100644
--- a/webSites/webSites-war/src/main/webapp/WEB-INF/web.xml
+++ b/webSites/webSites-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/webSites/webSites-war/src/main/webapp/bookmark/jsp/styleSheets/bookmark.css b/webSites/webSites-war/src/main/webapp/bookmark/jsp/styleSheets/bookmark.css
index 03829d4152..ed07912144 100644
--- a/webSites/webSites-war/src/main/webapp/bookmark/jsp/styleSheets/bookmark.css
+++ b/webSites/webSites-war/src/main/webapp/bookmark/jsp/styleSheets/bookmark.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/addPage.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/addPage.jsp
index 059569ac2d..77e1c8aa8b 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/addPage.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/addPage.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -200,7 +200,15 @@ else if (action.equals("verif")) { //vient de addPage
       <HEAD>
       <script type="text/javascript">
           function verifServer(path, name, nameSite, id) {
-              window.opener.location.replace("verifAjoutPage.jsp?Path="+URLENCODE(path)+"&nomPage="+URLENCODE(name)+"&nameSite="+URLENCODE(nameSite)+"&id="+id);
+              window.opener.sp.formRequest("verifAjoutPage.jsp")
+                  .withParams({
+                    'Path' : path,
+                    'nomPage' : name,
+                    'nameSite' : nameSite,
+                    'id' : id
+                  })
+                  .byPostMethod()
+                  .submit();
               window.close();
           }
       </script>
@@ -216,6 +224,7 @@ else if (action.equals("addPage")) { //vient de verifAjoutPage
 
     //SERVER OK, AJOUT PAGE
     String name = (String) request.getParameter("nomPage"); //vient de verifAjoutPage
+    String code = "<HTML><HEAD></HEAD><BODY></BODY></HTML>";
     /* Creer une nouvelle page sur le serveur */
     scc.createFile(path, name, code);
 %>
@@ -237,10 +246,4 @@ else if (action.equals("addPage")) { //vient de verifAjoutPage
 
 }
 
-%>
-
-	<script type="text/javascript">
-       function URLENCODE(URL){
-         return encodeURIComponent(URL);
-        }
-	</script>
\ No newline at end of file
+%>
\ No newline at end of file
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/addRep.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/addRep.jsp
index 7277d7adff..f45e13ee54 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/addRep.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/addRep.jsp
@@ -3,7 +3,7 @@
 <%@ page import="org.silverpeas.core.util.WebEncodeHelper" %>
 <%@ page import="org.silverpeas.core.util.WebEncodeHelper" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -15,7 +15,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -23,7 +23,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -170,7 +170,15 @@ else if (action.equals("Add")) {
 <head>
 <script type="text/javascript">
 function verifServer(id, path, name) {
-  window.opener.location.replace("verif.jsp?Action=addFolder&Id="+id+"&Path="+path+"&name="+name);
+  window.opener.sp.formRequest("verif.jsp")
+      .withParams({
+        'Action' : 'addFolder',
+        'Id' : id,
+        'Path' : path,
+        'name' : name
+      })
+      .byPostMethod()
+      .submit();
   window.close();
 }
 </script>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/addTopic.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/addTopic.jsp
index 150b221338..72e8343c25 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/addTopic.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/addTopic.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/checkScc.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/checkScc.jsp
index 1ffb5f71db..f2fa9ff58e 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/checkScc.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/checkScc.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/classifyDeclassify.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/classifyDeclassify.jsp
index e5eb44ec84..b1310ebc0b 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/classifyDeclassify.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/classifyDeclassify.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@ page import="org.silverpeas.components.websites.servlets.WebSitesRequestRouter" %>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/classifySite.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/classifySite.jsp
index be5b4fdfd8..8a9ed485cf 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/classifySite.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/classifySite.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/descBookmark.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/descBookmark.jsp
index 69172c28dc..3b06c085fe 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/descBookmark.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/descBookmark.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/descDesign.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/descDesign.jsp
index 39317e66e0..b2823b94cd 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/descDesign.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/descDesign.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/descUpload.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/descUpload.jsp
index 8909af4a04..d01933b99c 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/descUpload.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/descUpload.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/design.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/design.jsp
index 2497544f5b..81116a8d96 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/design.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/design.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -108,6 +108,10 @@ function URLENCODE(URL){
   return encodeURIComponent(URL);
 }
 
+function openWindow(url, name) {
+  return SP_openWindow(url, name, 700, 200, "directories=0,menubar=0,toolbar=0,alwaysRaised");
+}
+
 /**********************************************/
 
 function B_RETOUR_ONCLICK() {
@@ -143,10 +147,14 @@ function folderAdd(id, path) {
         window.pageAddWindow.close();
     }
 
-    url = "addRep.jsp?Id="+id+"&Path="+path+"&Action=View";
-    windowName = "repAddWindow";
-    windowParams = "directories=0,menubar=0,toolbar=0,height=200,width=700,alwaysRaised";
-    repAddWindow = open(url, windowName, windowParams, false);
+    repAddWindow = openWindow({
+      url : 'addRep.jsp',
+      params : {
+        'Id' : id,
+        'Path' : path,
+        'Action' : 'View'
+      }
+    }, "repAddWindow");
 }
 
 /**********************************************/
@@ -166,10 +174,15 @@ function pageAdd(path, nomsite) {
     if (window.pageAddWindow != null) {
         window.pageAddWindow.close();
     }
-    url = "addPage.jsp?Action=View&Path="+URLENCODE(path)+"&nameSite="+URLENCODE(nomsite)+"&id=<%=id%>";
-    windowName = "pageAddWindow";
-    windowParams = "directories=0,menubar=0,toolbar=0,height=200,width=700,alwaysRaised";
-    pageAddWindow = open(url, windowName, windowParams, false);
+    pageAddWindow = openWindow({
+      url : 'addPage.jsp',
+      params : {
+        'id' : '<%=id%>',
+        'Path' : path,
+        'Action' : 'View',
+        'nameSite' : nomsite
+      }
+    }, "pageAddWindow");
 }
 
 /**********************************************/
@@ -185,10 +198,12 @@ function uploadFile(path) {
     if (window.pageAddWindow != null)
         window.pageAddWindow.close();
 
-    url = "uploadFile.jsp?Path="+URLENCODE(path);
-    windowName = "uploadFileWindow";
-    windowParams = "directories=0,menubar=0,toolbar=0,height=200,width=700,alwaysRaised";
-    uploadFileWindow = open(url, windowName, windowParams, false);
+    uploadFileWindow = openWindow({
+      url : 'uploadFile.jsp',
+      params : {
+        'Path' : path
+      }
+    }, "uploadFileWindow");
 }
 
 
@@ -206,10 +221,15 @@ function renameFolder(id, path, name) {
     if (window.pageAddWindow != null)
         window.pageAddWindow.close();
 
-    url = "updateRep.jsp?Id="+id+"&Path="+path+"&Action=View&Name="+name;
-    windowName = "repUpdateWindow";
-    windowParams = "directories=0,menubar=0,toolbar=0,height=200,width=700,alwaysRaised";
-    repUpdateWindow = open(url, windowName, windowParams, false);
+    repUpdateWindow = openWindow({
+      url : 'updateRep.jsp',
+      params : {
+        'Id' : id,
+        'Path' : path,
+        'Action' : 'View',
+        'Name' : name
+      }
+    }, "repUpdateWindow");
 }
 
 /**********************************************/
@@ -266,10 +286,15 @@ function renamePage(id, path, name) {
     if (window.pageAddWindow != null)
         window.pageAddWindow.close();
 
-    url = "updatePage.jsp?Id="+id+"&Path="+path+"&Action=View&Name="+name;
-    windowName = "pageUpdateWindow";
-    windowParams = "directories=0,menubar=0,toolbar=0,height=200,width=700,alwaysRaised";
-    pageUpdateWindow = open(url, windowName, windowParams, false);
+    pageUpdateWindow = openWindow({
+      url : 'updatePage.jsp',
+      params : {
+        'Id' : id,
+        'Path' : path,
+        'Action' : 'View',
+        'Name' : name
+      }
+    }, "pageUpdateWindow");
 
 }
 
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/dictionnaireIcones.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/dictionnaireIcones.jsp
index 45c8594b73..c438aff659 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/dictionnaireIcones.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/dictionnaireIcones.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/javaScript/commons.js b/webSites/webSites-war/src/main/webapp/webSites/jsp/javaScript/commons.js
index e194f263a1..2bcfe3df7d 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/javaScript/commons.js
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/javaScript/commons.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 (function() {
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/listSite.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/listSite.jsp
index 8059a34b2b..2fe9e33f05 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/listSite.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/listSite.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://www.silverpeas.com/tld/viewGenerator" prefix="view" %>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/listSitePortlet.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/listSitePortlet.jsp
index 0b015eb25e..f7e8674729 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/listSitePortlet.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/listSitePortlet.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
 <%@ taglib uri="http://www.silverpeas.com/tld/viewGenerator" prefix="view"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/listSite_reader.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/listSite_reader.jsp
index 86f7024bd4..213471c551 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/listSite_reader.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/listSite_reader.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://www.silverpeas.com/tld/viewGenerator" prefix="view" %>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/listSite_readerPortlet.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/listSite_readerPortlet.jsp
index f1a97aa2e3..f122df060c 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/listSite_readerPortlet.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/listSite_readerPortlet.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
 <%@ taglib uri="http://www.silverpeas.com/tld/viewGenerator" prefix="view"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/manage.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/manage.jsp
index 914adea678..77a17442e5 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/manage.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/manage.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/modifDesc.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/modifDesc.jsp
index 7b108f33ac..2b1fc040b5 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/modifDesc.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/modifDesc.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/openSite.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/openSite.jsp
index 455c010435..050680ce9b 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/openSite.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/openSite.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://www.silverpeas.com/tld/viewGenerator" prefix="view"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/openSiteFromSearch.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/openSiteFromSearch.jsp
index 1fe1bc55a7..58494ecfa2 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/openSiteFromSearch.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/openSiteFromSearch.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/organize.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/organize.jsp
index add1a9a4d2..15d3e8ee87 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/organize.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/organize.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
 
@@ -151,12 +151,18 @@ function topicAdd(fatherId) {
         topicAddWindow.close();
 
     path = document.liste.Path.value;
-    url = "addTopic.jsp?Id="+fatherId+"&Path="+breakSpace(path)+"&Action=View";
     windowName = "topicAddWindow";
     larg = "670";
     haut = "270";
     windowParams = "directories=0,menubar=0,toolbar=0,alwaysRaised";
-    topicAddWindow = SP_openWindow(url, windowName, larg , haut, windowParams);
+    topicAddWindow = SP_openWindow({
+      url : 'addTopic.jsp',
+      params : {
+        'Id' : fatherId,
+        'Path' : path,
+        'Action' : 'View'
+      }
+    }, windowName, larg , haut, windowParams);
 }
 
 /***************************************************************************/
@@ -167,12 +173,17 @@ function topicUpdate(id) {
 
     document.liste.ChildId.value = id;
     path = document.liste.Path.value;
-    url = "updateTopic.jsp?ChildId="+id+"&Path="+breakSpace(path);
     windowName = "topicUpdateWindow";
     larg = "670";
     haut = "270";
     windowParams = "directories=0,menubar=0,toolbar=0, alwaysRaised";
-    topicUpdateWindow = SP_openWindow(url, windowName, larg , haut, windowParams);
+    topicUpdateWindow = SP_openWindow({
+      url : 'updateTopic.jsp',
+      params : {
+        'ChildId' : id,
+        'Path' : path
+      }
+    }, windowName, larg , haut, windowParams);
 }
 
 /***************************************************************************/
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/styleSheets/webSites.css b/webSites/webSites-war/src/main/webapp/webSites/jsp/styleSheets/webSites.css
index 3adcada0d9..ab1ef903b2 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/styleSheets/webSites.css
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/styleSheets/webSites.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/suggestionConfirmation.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/suggestionConfirmation.jsp
index f4ef478b53..97c73642a8 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/suggestionConfirmation.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/suggestionConfirmation.jsp
@@ -1,5 +1,5 @@
 <%--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify
   ~ it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
   ~ GNU Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License
-  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
 <%@ taglib uri="http://www.silverpeas.com/tld/viewGenerator" prefix="view" %>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/updatePage.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/updatePage.jsp
index a51a9d4b92..4f76c52903 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/updatePage.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/updatePage.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.util.StringUtil"%>
@@ -182,7 +182,16 @@ function sendData() {
       <HEAD>
       <script language="Javascript">
           function verifServer(id, path, name, newname) {
-                window.opener.location.replace("verif.jsp?Action=renamePage&Id="+id+"&Path="+path+"&name="+name+"&newName="+newname);
+                window.opener.sp.formRequest("verif.jsp")
+                    .withParams({
+                      'Action' : 'renamePage',
+                      'Id' : id,
+                      'Path' : path,
+                      'name' : name,
+                      'newName' : newname
+                    })
+                    .byPostMethod()
+                    .submit();
               window.close();
           }
       </script>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/updateRep.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/updateRep.jsp
index d38f53eff7..8a7ffda650 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/updateRep.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/updateRep.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -199,7 +199,16 @@ else if (action.equals("Update")) {
       <HEAD>
       <script language="Javascript">
           function verifServer(id, path, name, newname) {
-                window.opener.location.replace("verif.jsp?Action=renameFolder&Id="+id+"&Path="+path+"&name="+name+"&newName="+newname);
+                window.opener.sp.formRequest("verif.jsp")
+                    .withParams({
+                      'Action' : 'renameFolder',
+                      'Id' : id,
+                      'Path' : path,
+                      'name' : name,
+                      'newName' : newname,
+                    })
+                    .byPostMethod()
+                    .submit();
               window.close();
           }
       </script>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/updateTopic.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/updateTopic.jsp
index 045302599c..dc69a07f40 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/updateTopic.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/updateTopic.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/uploadFile.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/uploadFile.jsp
index 902490c038..6f49054178 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/uploadFile.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/uploadFile.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/util.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/util.jsp
index 117ebf6cca..637213282b 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/util.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/util.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/verif.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/verif.jsp
index a85d5f068b..f51d596f3d 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/verif.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/verif.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.util.StringUtil"%>
@@ -31,6 +31,7 @@
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.frame.Frame" %>
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.window.Window" %>
 <%@ page import="org.silverpeas.core.web.http.HttpRequest" %>
+<%@ page import="org.silverpeas.core.web.token.SynchronizerTokenService" %>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
 <%@ taglib uri="http://www.silverpeas.com/tld/viewGenerator" prefix="view"%>
 <%
@@ -74,6 +75,8 @@ response.setDateHeader ("Expires",-1); //prevents caching at the proxy server
 
                     "<BODY bgcolor=\"white\" topmargin=\"15\" leftmargin=\"20\" onLoad=\"submit_form('"+rep+"')\">"+
                     "<form name=\"verification\" action=\"design.jsp\" method=\"POST\">"+
+                    "<input type=\"hidden\" name=\"" + SynchronizerTokenService.SESSION_TOKEN_KEY + "\" value=\""+request.getParameter(SynchronizerTokenService.SESSION_TOKEN_KEY)+"\">"+
+                    "<input type=\"hidden\" name=\"" + SynchronizerTokenService.NAVIGATION_TOKEN_KEY + "\" value=\""+request.getParameter(SynchronizerTokenService.NAVIGATION_TOKEN_KEY)+"\">"+
                     "<input type=\"hidden\" name=\"Action\" value=\""+action+"\">"+
                     "<input type=\"hidden\" name=\"Id\" value=\""+id+"\">"+
                     "<input type=\"hidden\" name=\"Path\" value=\""+currentPath+"\">"+
diff --git a/webSites/webSites-war/src/main/webapp/webSites/jsp/verifAjoutPage.jsp b/webSites/webSites-war/src/main/webapp/webSites/jsp/verifAjoutPage.jsp
index 3e0507cd56..57e100c1d6 100644
--- a/webSites/webSites-war/src/main/webapp/webSites/jsp/verifAjoutPage.jsp
+++ b/webSites/webSites-war/src/main/webapp/webSites/jsp/verifAjoutPage.jsp
@@ -2,9 +2,10 @@
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.GraphicElementFactory" %>
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.tabs.TabbedPane" %>
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.window.Window" %>
-<%@ page import="org.silverpeas.core.web.http.HttpRequest" %><%--
+<%@ page import="org.silverpeas.core.web.http.HttpRequest" %>
+<%@ page import="org.silverpeas.core.web.token.SynchronizerTokenService" %><%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -16,7 +17,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -24,7 +25,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -67,6 +68,8 @@ response.setDateHeader ("Expires",-1); //prevents caching at the proxy server
 
                     "<BODY bgcolor=\"white\" topmargin=\"15\" leftmargin=\"20\" onLoad=\"submit_form('"+rep+"')\">"+
                     "<form name=\"verification\" action=\"addPage.jsp\" method=\"POST\">"+
+                    "<input type=\"hidden\" name=\"" + SynchronizerTokenService.SESSION_TOKEN_KEY + "\" value=\""+request.getParameter(SynchronizerTokenService.SESSION_TOKEN_KEY)+"\">"+
+                    "<input type=\"hidden\" name=\"" + SynchronizerTokenService.NAVIGATION_TOKEN_KEY + "\" value=\""+request.getParameter(SynchronizerTokenService.NAVIGATION_TOKEN_KEY)+"\">"+
                     "<input type=\"hidden\" name=\"Action\" value=\""+action+"\">"+
                     "<input type=\"hidden\" name=\"Path\" value=\""+currentPath+"\">"+
                     "<input type=\"hidden\" name=\"nomPage\" value=\""+nomPage+"\">"+
diff --git a/whitePages/pom.xml b/whitePages/pom.xml
index 0c002ac602..9dfff26fd1 100644
--- a/whitePages/pom.xml
+++ b/whitePages/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components</groupId>
diff --git a/whitePages/whitePages-configuration/pom.xml b/whitePages/whitePages-configuration/pom.xml
index 2942705fa7..27f6ed1464 100644
--- a/whitePages/whitePages-configuration/pom.xml
+++ b/whitePages/whitePages-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>whitepages</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.whitepages</groupId>
diff --git a/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages.xml b/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages.xml
index 77ffb3b3a1..9acd425f6c 100644
--- a/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages.xml
+++ b/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/data.xml b/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/data.xml
index 0865f78e72..684cadbd95 100644
--- a/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/data.xml
+++ b/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/data.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/update.xml b/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/update.xml
index bfccad4ddb..9d80e03371 100644
--- a/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/update.xml
+++ b/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/update.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/user.xml b/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/user.xml
index dd2efc9d3b..49828c7c83 100644
--- a/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/user.xml
+++ b/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/user.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/view.xml b/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/view.xml
index 8572018fe5..15bca16f42 100644
--- a/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/view.xml
+++ b/whitePages/whitePages-configuration/src/main/config/data/templateRepository/whitePages/view.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/whitePages/whitePages-configuration/src/main/config/migrations/modules/whitePages-migration.xml b/whitePages/whitePages-configuration/src/main/config/migrations/modules/whitePages-migration.xml
index bd8620a49e..8c0eb47ea4 100644
--- a/whitePages/whitePages-configuration/src/main/config/migrations/modules/whitePages-migration.xml
+++ b/whitePages/whitePages-configuration/src/main/config/migrations/modules/whitePages-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify it under the terms of the
   ~ GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -10,14 +10,14 @@
   ~ redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
   ~ applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
   ~ text describing the FLOSS exception, and it is also available here:
-  ~ "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  ~ "https://www.silverpeas.org/legal/floss_exception.html"
   ~
   ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
   ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   ~ Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License along with this program.
-  ~ If not, see <http://www.gnu.org/licenses/>.
+  ~ If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <migration module="whitePages"
diff --git a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/util/logging/whitePagesLogging.properties b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/util/logging/whitePagesLogging.properties
index f62db35030..dced2212d1 100644
--- a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/util/logging/whitePagesLogging.properties
+++ b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/util/logging/whitePagesLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle.properties b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle.properties
index ab87db64da..c8c24a0fc9 100644
--- a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle.properties
+++ b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 whitePages.groupe = Groupe
 whitePages.recherche = Recherche d'utilisateurs
diff --git a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle_de.properties b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle_de.properties
index 2cfd8225e9..8b87d11e5b 100644
--- a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle_de.properties
+++ b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 whitePages.groupe = Gruppe
 whitePages.recherche = Benutzersuche
diff --git a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle_en.properties b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle_en.properties
index aa600c6c9d..a2f2267598 100644
--- a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle_en.properties
+++ b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 whitePages.groupe = Group
 whitePages.recherche = Search for users
diff --git a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle_fr.properties b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle_fr.properties
index ab87db64da..c8c24a0fc9 100644
--- a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle_fr.properties
+++ b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/multilang/whitePagesBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 whitePages.groupe = Groupe
 whitePages.recherche = Recherche d'utilisateurs
diff --git a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/settings/settings.properties b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/settings/settings.properties
index 70116a506c..062c9d669f 100644
--- a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/settings/settings.properties
+++ b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/settings/settings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,6 +19,6 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 whitePages.genericUserId=48
\ No newline at end of file
diff --git a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/settings/template.properties b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/settings/template.properties
index 109461aaea..4a1d3e2a27 100644
--- a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/settings/template.properties
+++ b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/settings/template.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,6 +19,6 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 templateDir = ${sys.SILVERPEAS_DATA_HOME}/templateRepository/
diff --git a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/settings/whitePagesIcons.properties b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/settings/whitePagesIcons.properties
index 02b5e157d6..7d078c92a3 100644
--- a/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/settings/whitePagesIcons.properties
+++ b/whitePages/whitePages-configuration/src/main/config/properties/org/silverpeas/whitePages/settings/whitePagesIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 whitePages.newCard = /util/icons/create-action/add-user.png
 whitePages.delCard = /util/icons/whitePages_to_del.gif
diff --git a/whitePages/whitePages-configuration/src/main/config/xmlcomponents/whitePages.xml b/whitePages/whitePages-configuration/src/main/config/xmlcomponents/whitePages.xml
index a18b54e439..a00968ccb3 100644
--- a/whitePages/whitePages-configuration/src/main/config/xmlcomponents/whitePages.xml
+++ b/whitePages/whitePages-configuration/src/main/config/xmlcomponents/whitePages.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/whitePages/whitePages-library/pom.xml b/whitePages/whitePages-library/pom.xml
index b98d2b970b..b0e31f024a 100644
--- a/whitePages/whitePages-library/pom.xml
+++ b/whitePages/whitePages-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>whitepages</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.whitepages</groupId>
diff --git a/whitePages/whitePages-library/src/integration-test/java/org/silverpeas/components/whitepages/dao/SearchFieldDaoIT.java b/whitePages/whitePages-library/src/integration-test/java/org/silverpeas/components/whitepages/dao/SearchFieldDaoIT.java
index d932df4c56..3f77674cee 100644
--- a/whitePages/whitePages-library/src/integration-test/java/org/silverpeas/components/whitepages/dao/SearchFieldDaoIT.java
+++ b/whitePages/whitePages-library/src/integration-test/java/org/silverpeas/components/whitepages/dao/SearchFieldDaoIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.dao;
 
diff --git a/whitePages/whitePages-library/src/integration-test/java/org/silverpeas/components/whitepages/service/WhitePagesServiceIT.java b/whitePages/whitePages-library/src/integration-test/java/org/silverpeas/components/whitepages/service/WhitePagesServiceIT.java
index 82af50e7a7..2ab7a7698d 100644
--- a/whitePages/whitePages-library/src/integration-test/java/org/silverpeas/components/whitepages/service/WhitePagesServiceIT.java
+++ b/whitePages/whitePages-library/src/integration-test/java/org/silverpeas/components/whitepages/service/WhitePagesServiceIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.service;
 
diff --git a/whitePages/whitePages-library/src/integration-test/java/org/silverpeas/components/whitepages/service/WhitePagesServiceProviderIT.java b/whitePages/whitePages-library/src/integration-test/java/org/silverpeas/components/whitepages/service/WhitePagesServiceProviderIT.java
index 155e92d9cd..7484e090ae 100644
--- a/whitePages/whitePages-library/src/integration-test/java/org/silverpeas/components/whitepages/service/WhitePagesServiceProviderIT.java
+++ b/whitePages/whitePages-library/src/integration-test/java/org/silverpeas/components/whitepages/service/WhitePagesServiceProviderIT.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.service;
 
diff --git a/whitePages/whitePages-library/src/integration-test/resources/arquillian.xml b/whitePages/whitePages-library/src/integration-test/resources/arquillian.xml
index c14046f2bb..bc5b073b7d 100644
--- a/whitePages/whitePages-library/src/integration-test/resources/arquillian.xml
+++ b/whitePages/whitePages-library/src/integration-test/resources/arquillian.xml
@@ -1,6 +1,6 @@
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <arquillian xmlns="http://jboss.org/schema/arquillian"
diff --git a/whitePages/whitePages-library/src/integration-test/resources/org/silverpeas/classifyEngine/ClassifyEngine.properties b/whitePages/whitePages-library/src/integration-test/resources/org/silverpeas/classifyEngine/ClassifyEngine.properties
index 6bb8482d1e..547e415563 100644
--- a/whitePages/whitePages-library/src/integration-test/resources/org/silverpeas/classifyEngine/ClassifyEngine.properties
+++ b/whitePages/whitePages-library/src/integration-test/resources/org/silverpeas/classifyEngine/ClassifyEngine.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -19,6 +19,6 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
 #
 MaxAxis = 50
\ No newline at end of file
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesException.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesException.java
index 8c4a234fe8..8815b22730 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesException.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.whitepages;
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesInstancePostConstruction.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesInstancePostConstruction.java
index e6f43096db..9d1e8d9d0d 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesInstancePostConstruction.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesInstancePreDestruction.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesInstancePreDestruction.java
index aae38916f4..e2dae91207 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesInstancePreDestruction.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesInstancePreDestruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesStatistics.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesStatistics.java
index 2ceb8086f1..99803764fa 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesStatistics.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/WhitePagesStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/control/CardHeader.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/control/CardHeader.java
index 98a3ab5615..4547a4a0a7 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/control/CardHeader.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/control/CardHeader.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.control;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/control/CardManager.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/control/CardManager.java
index e3a4ea48dc..b017a2025d 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/control/CardManager.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/control/CardManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.control;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/control/WhitePagesContentManager.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/control/WhitePagesContentManager.java
index edd62715ae..e7e33c5d83 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/control/WhitePagesContentManager.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/control/WhitePagesContentManager.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.control;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/dao/SearchFieldDao.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/dao/SearchFieldDao.java
index 0a9a193382..aae0cd1c6a 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/dao/SearchFieldDao.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/dao/SearchFieldDao.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.whitepages.dao;
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/dao/SearchFieldDaoImpl.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/dao/SearchFieldDaoImpl.java
index e0d565ca9e..c0715661d4 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/dao/SearchFieldDaoImpl.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/dao/SearchFieldDaoImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.dao;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/Card.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/Card.java
index b13ebaa609..3a7abff36a 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/Card.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/Card.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.model;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/SearchField.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/SearchField.java
index 81b7b8f6ab..f43bbe054c 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/SearchField.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/SearchField.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.model;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/SearchFieldsType.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/SearchFieldsType.java
index b5626c19e7..6a2539628e 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/SearchFieldsType.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/SearchFieldsType.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.model;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/SilverCard.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/SilverCard.java
index 93765dbd4f..3242ba98ba 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/SilverCard.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/SilverCard.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.whitepages.model;
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/WhitePagesCard.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/WhitePagesCard.java
index d66101101b..415af1711f 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/WhitePagesCard.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/model/WhitePagesCard.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.model;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/record/UserRecord.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/record/UserRecord.java
index f27e26f9f2..7b37b0719f 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/record/UserRecord.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/record/UserRecord.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.record;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/record/UserTemplate.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/record/UserTemplate.java
index eea5eac65c..6ec16ecd9e 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/record/UserTemplate.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/record/UserTemplate.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.record;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/DefaultWhitePagesService.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/DefaultWhitePagesService.java
index fad48e1a55..f611faacdf 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/DefaultWhitePagesService.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/DefaultWhitePagesService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.service;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/MixedSearchService.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/MixedSearchService.java
index febea92c9b..773caf87a0 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/MixedSearchService.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/MixedSearchService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.service;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/MixedSearchServiceImpl.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/MixedSearchServiceImpl.java
index 9e00342642..2389c40d98 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/MixedSearchServiceImpl.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/MixedSearchServiceImpl.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.service;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/SearchFieldComparator.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/SearchFieldComparator.java
index 19adea2054..d31d1c4ca4 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/SearchFieldComparator.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/SearchFieldComparator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.service;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/WhitePageServiceProvider.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/WhitePageServiceProvider.java
index f61688b648..202622fefd 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/WhitePageServiceProvider.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/WhitePageServiceProvider.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.service;
 
diff --git a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/WhitePagesService.java b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/WhitePagesService.java
index cbfcc3f800..9ae6ae8a11 100644
--- a/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/WhitePagesService.java
+++ b/whitePages/whitePages-library/src/main/java/org/silverpeas/components/whitepages/service/WhitePagesService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.whitepages.service;
diff --git a/whitePages/whitePages-war/pom.xml b/whitePages/whitePages-war/pom.xml
index 3b16d4934d..ad7ef9a9b6 100644
--- a/whitePages/whitePages-war/pom.xml
+++ b/whitePages/whitePages-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>whitepages</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.whitepages</groupId>
diff --git a/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/WhitePagesIndexer.java b/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/WhitePagesIndexer.java
index 2efabaeb3f..12b5873cbb 100644
--- a/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/WhitePagesIndexer.java
+++ b/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/WhitePagesIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/control/WhitePagesSessionController.java b/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/control/WhitePagesSessionController.java
index f61cfcd711..7b534e0c30 100644
--- a/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/control/WhitePagesSessionController.java
+++ b/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/control/WhitePagesSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.control;
 
diff --git a/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/filters/ComponentRequestRouterFilter.java b/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/filters/ComponentRequestRouterFilter.java
index fa090590fc..6a46cc7bac 100644
--- a/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/filters/ComponentRequestRouterFilter.java
+++ b/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/filters/ComponentRequestRouterFilter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.filters;
 
diff --git a/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/filters/LoginFilter.java b/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/filters/LoginFilter.java
index 43b7ac11c4..857754991c 100644
--- a/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/filters/LoginFilter.java
+++ b/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/filters/LoginFilter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.whitepages.filters;
diff --git a/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/servlets/WhitePagesRequestRouter.java b/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/servlets/WhitePagesRequestRouter.java
index d59492436f..54353bb72a 100644
--- a/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/servlets/WhitePagesRequestRouter.java
+++ b/whitePages/whitePages-war/src/main/java/org/silverpeas/components/whitepages/servlets/WhitePagesRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.whitepages.servlets;
 
diff --git a/whitePages/whitePages-war/src/main/webapp/WEB-INF/web.xml b/whitePages/whitePages-war/src/main/webapp/WEB-INF/web.xml
index bca4c66e8b..bb30d0c7eb 100644
--- a/whitePages/whitePages-war/src/main/webapp/WEB-INF/web.xml
+++ b/whitePages/whitePages-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/checkWhitePages.jsp b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/checkWhitePages.jsp
index 73dc570ba8..6ec3618801 100644
--- a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/checkWhitePages.jsp
+++ b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/checkWhitePages.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/closeUpdate.jsp b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/closeUpdate.jsp
index 939f7bcd81..af214df7e6 100644
--- a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/closeUpdate.jsp
+++ b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/closeUpdate.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/consultCard.jsp b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/consultCard.jsp
index 341263327e..46e196715e 100644
--- a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/consultCard.jsp
+++ b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/consultCard.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -123,20 +123,24 @@ function openSPWindow(fonction,windowName){
 	}
 
 /*****************************************************************************/
-	function B_UPDATE_ONCLICK(idCard) {
-		 theURL = "<%=routerUrl%>updateCard?userCardId="+idCard;
-         winName = "updateCard";
-         larg ="600";
-         haut = "400";
-         windowParams = "scrollbars=yes, resizable, alwaysRaised";
-         dico = SP_openWindow(theURL, winName, larg, haut, windowParams);
-	}
+function B_UPDATE_ONCLICK(idCard) {
+  const winName = "updateCard";
+  const larg = "600";
+  const haut = "400";
+  const windowParams = "scrollbars=yes, resizable, alwaysRaised";
+  SP_openWindow({
+    url : '<%=routerUrl%>updateCard',
+    params : {
+      "userCardId" : idCard
+    }
+  }, winName, larg, haut, windowParams);
+}
 
 /*****************************************************************************/
 	function B_DELETE_ONCLICK(idCard) {
     var label = "<%=resource.getString("whitePages.messageSuppression")%>";
     jQuery.popup.confirm(label, function() {
-			location.href = "<%=routerUrl%>delete?checkedCard="+idCard;
+			sp.formRequest("<%=routerUrl%>delete?checkedCard="+idCard).byPostMethod().submit();
 		});
 	}
 
diff --git a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/createCard.jsp b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/createCard.jsp
index d3f64cf84d..af6a12c8a8 100644
--- a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/createCard.jsp
+++ b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/createCard.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/dynamicFieldsChoice.jsp b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/dynamicFieldsChoice.jsp
index 9bae7df9b9..490189fb07 100644
--- a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/dynamicFieldsChoice.jsp
+++ b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/dynamicFieldsChoice.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.contribution.content.form.FieldTemplate"%>
diff --git a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/dynamicSearch.jsp b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/dynamicSearch.jsp
index c9d39a1295..f0a3d95840 100644
--- a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/dynamicSearch.jsp
+++ b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/dynamicSearch.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -61,7 +61,7 @@ if(request.getAttribute("isAdmin") != null){
 if(isAdmin){
 %>
 function B_CREATE_ONCLICK() {
-	location.href = "<%=routerUrl%>createQuery";
+	sp.formRequest("<%=routerUrl%>createQuery").byPostMethod().submit();
 }
 
 function listCheckedCard(nbCard) {
diff --git a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/errorIdentity.jsp b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/errorIdentity.jsp
index 057de2394c..01719eab11 100644
--- a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/errorIdentity.jsp
+++ b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/errorIdentity.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.buttonpanes.ButtonPane" %>
diff --git a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/errorSelectUser.jsp b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/errorSelectUser.jsp
index 77948a6fc7..07de721a7d 100644
--- a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/errorSelectUser.jsp
+++ b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/errorSelectUser.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -57,7 +57,7 @@
 <script language="JavaScript">
 
 function B_SELECTUSER_ONCLICK() {
-   location.href = "<%=routerUrl%>createQuery";
+   sp.formRequest("<%=routerUrl%>createQuery").byPostMethod().submit();
 }
 
 /*****************************************************************************/
diff --git a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/notifyExpert.jsp b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/notifyExpert.jsp
index 72f4b2c3b1..540d9280b4 100644
--- a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/notifyExpert.jsp
+++ b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/notifyExpert.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page import="org.silverpeas.core.web.util.viewgenerator.html.buttonpanes.ButtonPane" %>
diff --git a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/portlet.jsp b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/portlet.jsp
index 763a9e872f..dbb65ca266 100644
--- a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/portlet.jsp
+++ b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/portlet.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/updateCard.jsp b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/updateCard.jsp
index 28c264256e..7085ec8914 100644
--- a/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/updateCard.jsp
+++ b/whitePages/whitePages-war/src/main/webapp/whitePages/jsp/updateCard.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have received a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/yellowpages/pom.xml b/yellowpages/pom.xml
index 820c7780fc..40644a4872 100644
--- a/yellowpages/pom.xml
+++ b/yellowpages/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas</groupId>
     <artifactId>components</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
   
   <groupId>org.silverpeas.components</groupId>
diff --git a/yellowpages/yellowpages-configuration/pom.xml b/yellowpages/yellowpages-configuration/pom.xml
index 4d65dfa159..0197abce43 100644
--- a/yellowpages/yellowpages-configuration/pom.xml
+++ b/yellowpages/yellowpages-configuration/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>yellowpages</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.yellowpages</groupId>
diff --git a/yellowpages/yellowpages-configuration/src/main/config/migrations/modules/yellowpages-migration.xml b/yellowpages/yellowpages-configuration/src/main/config/migrations/modules/yellowpages-migration.xml
index c0c5cdc5f2..a14db16ae8 100644
--- a/yellowpages/yellowpages-configuration/src/main/config/migrations/modules/yellowpages-migration.xml
+++ b/yellowpages/yellowpages-configuration/src/main/config/migrations/modules/yellowpages-migration.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (C) 2000 - 2022 Silverpeas
+  ~ Copyright (C) 2000 - 2024 Silverpeas
   ~
   ~ This program is free software: you can redistribute it and/or modify it under the terms of the
   ~ GNU Affero General Public License as published by the Free Software Foundation, either version 3
@@ -10,14 +10,14 @@
   ~ redistribute this Program in connection with Free/Libre Open Source Software ("FLOSS")
   ~ applications as described in Silverpeas's FLOSS exception. You should have received a copy of the
   ~ text describing the FLOSS exception, and it is also available here:
-  ~ "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  ~ "https://www.silverpeas.org/legal/floss_exception.html"
   ~
   ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
   ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   ~ Affero General Public License for more details.
   ~
   ~ You should have received a copy of the GNU Affero General Public License along with this program.
-  ~ If not, see <http://www.gnu.org/licenses/>.
+  ~ If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <migration module="yellowpages"
diff --git a/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/util/logging/yellowpagesLogging.properties b/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/util/logging/yellowpagesLogging.properties
index a68dd20822..8a45096c99 100644
--- a/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/util/logging/yellowpagesLogging.properties
+++ b/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/util/logging/yellowpagesLogging.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle.properties b/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle.properties
index a7f0c0566d..321456ed7f 100644
--- a/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle.properties
+++ b/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 BBarconsultManager = Identit\u00e9
 
diff --git a/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle_de.properties b/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle_de.properties
index 7f15cb5e25..53baf04d2a 100644
--- a/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle_de.properties
+++ b/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle_de.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have received a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
 BBarconsultManager = Identit&auml;t
diff --git a/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle_en.properties b/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle_en.properties
index b81b8accfe..4d2edcfe9e 100644
--- a/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle_en.properties
+++ b/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle_en.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 BBarconsultManager = ID
 
diff --git a/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle_fr.properties b/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle_fr.properties
index a7f0c0566d..321456ed7f 100644
--- a/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle_fr.properties
+++ b/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/multilang/yellowpagesBundle_fr.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 BBarconsultManager = Identit\u00e9
 
diff --git a/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/settings/yellowpagesIcons.properties b/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/settings/yellowpagesIcons.properties
index aa6530a806..3d85172ae5 100644
--- a/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/settings/yellowpagesIcons.properties
+++ b/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/settings/yellowpagesIcons.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 yellowpages.aide = /util/icons/info.gif
 
diff --git a/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/settings/yellowpagesSettings.properties b/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/settings/yellowpagesSettings.properties
index c9f6ba1298..7e24dc98fa 100644
--- a/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/settings/yellowpagesSettings.properties
+++ b/yellowpages/yellowpages-configuration/src/main/config/properties/org/silverpeas/yellowpages/settings/yellowpagesSettings.properties
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2000 - 2022 Silverpeas
+# Copyright (C) 2000 - 2024 Silverpeas
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
 # Open Source Software ("FLOSS") applications as described in Silverpeas's
 # FLOSS exception.  You should have recieved a copy of the text describing
 # the FLOSS exception, and it is also available here:
-# "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+# "https://www.silverpeas.org/legal/floss_exception.html"
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
 # GNU Affero General Public License for more details.
 #
 # You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 popupWidth = 640
 popupHeight = 480
diff --git a/yellowpages/yellowpages-configuration/src/main/config/xmlcomponents/yellowpages.xml b/yellowpages/yellowpages-configuration/src/main/config/xmlcomponents/yellowpages.xml
index 972122777a..b7736c2716 100644
--- a/yellowpages/yellowpages-configuration/src/main/config/xmlcomponents/yellowpages.xml
+++ b/yellowpages/yellowpages-configuration/src/main/config/xmlcomponents/yellowpages.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 <WAComponent xmlns="http://silverpeas.org/xml/ns/component" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://silverpeas.org/xml/ns/component http://www.silverpeas.org/xsd/component.xsd">
diff --git a/yellowpages/yellowpages-library/pom.xml b/yellowpages/yellowpages-library/pom.xml
index 6a2753212e..16dd602c9f 100644
--- a/yellowpages/yellowpages-library/pom.xml
+++ b/yellowpages/yellowpages-library/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>yellowpages</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.yellowpages</groupId>
diff --git a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/GroupEventListener.java b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/GroupEventListener.java
index 86e5f47663..5b350d520b 100644
--- a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/GroupEventListener.java
+++ b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/GroupEventListener.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages;
 
diff --git a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesComponentSettings.java b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesComponentSettings.java
index aea1e9c8ea..b9cbbc1da5 100644
--- a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesComponentSettings.java
+++ b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesComponentSettings.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception. You should have recieved a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages;
 
diff --git a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesException.java b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesException.java
index f1f24d1151..0cadfa885e 100644
--- a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesException.java
+++ b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages;
 
diff --git a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesInstancePostConstruction.java b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesInstancePostConstruction.java
index 3395e1ad16..7fe5cd165e 100644
--- a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesInstancePostConstruction.java
+++ b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesInstancePostConstruction.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  * <p>
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  * <p>
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  * <p>
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages;
 
diff --git a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesStatistics.java b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesStatistics.java
index f51106d60c..fc883a25e0 100644
--- a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesStatistics.java
+++ b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/YellowpagesStatistics.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages;
 
diff --git a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/dao/GroupDAO.java b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/dao/GroupDAO.java
index 0c8eabb02e..4aa0c55b8c 100644
--- a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/dao/GroupDAO.java
+++ b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/dao/GroupDAO.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages.dao;
 
diff --git a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/TopicDetail.java b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/TopicDetail.java
index 562fbb1e36..e2df1e3b19 100644
--- a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/TopicDetail.java
+++ b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/TopicDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages.model;
 
diff --git a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/UserCompleteContact.java b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/UserCompleteContact.java
index aaaff91dcb..5c763fafd7 100644
--- a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/UserCompleteContact.java
+++ b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/UserCompleteContact.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages.model;
 
diff --git a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/UserContact.java b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/UserContact.java
index 22ad4660fd..890535af88 100644
--- a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/UserContact.java
+++ b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/UserContact.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages.model;
 
diff --git a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/YellowPagesGroupDetail.java b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/YellowPagesGroupDetail.java
index 5068f6e3fe..717d2994ce 100644
--- a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/YellowPagesGroupDetail.java
+++ b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/YellowPagesGroupDetail.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages.model;
 
diff --git a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/YellowpagesRuntimeException.java b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/YellowpagesRuntimeException.java
index 1feac81b57..ef60ac8810 100644
--- a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/YellowpagesRuntimeException.java
+++ b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/model/YellowpagesRuntimeException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.yellowpages.model;
diff --git a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/service/DefaultYellowpagesService.java b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/service/DefaultYellowpagesService.java
index 4cf67772cf..85a8204f11 100644
--- a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/service/DefaultYellowpagesService.java
+++ b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/service/DefaultYellowpagesService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages.service;
 
diff --git a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/service/YellowpagesService.java b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/service/YellowpagesService.java
index ef93e20d1b..e0010c0aa4 100644
--- a/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/service/YellowpagesService.java
+++ b/yellowpages/yellowpages-library/src/main/java/org/silverpeas/components/yellowpages/service/YellowpagesService.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages.service;
 
diff --git a/yellowpages/yellowpages-war/pom.xml b/yellowpages/yellowpages-war/pom.xml
index f34dfdbaff..372b6fb129 100644
--- a/yellowpages/yellowpages-war/pom.xml
+++ b/yellowpages/yellowpages-war/pom.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.silverpeas.components</groupId>
     <artifactId>yellowpages</artifactId>
-    <version>6.3-SNAPSHOT</version>
+    <version>6.3.7-SNAPSHOT</version>
   </parent>
 
   <groupId>org.silverpeas.components.yellowpages</groupId>
diff --git a/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/ImportReport.java b/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/ImportReport.java
index 1805ef183e..13829936ab 100644
--- a/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/ImportReport.java
+++ b/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/ImportReport.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.yellowpages;
diff --git a/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/YellowpagesIndexer.java b/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/YellowpagesIndexer.java
index 8bde7ca979..273957da4d 100644
--- a/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/YellowpagesIndexer.java
+++ b/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/YellowpagesIndexer.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages;
 
diff --git a/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/control/DisplayContactsHelper.java b/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/control/DisplayContactsHelper.java
index e9f048a408..e2805eef61 100644
--- a/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/control/DisplayContactsHelper.java
+++ b/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/control/DisplayContactsHelper.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages.control;
 
diff --git a/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/control/YellowpagesSessionController.java b/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/control/YellowpagesSessionController.java
index 35e0bc450c..38d13e50fa 100644
--- a/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/control/YellowpagesSessionController.java
+++ b/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/control/YellowpagesSessionController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages.control;
 
diff --git a/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/servlets/YellowpagesActionAccessController.java b/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/servlets/YellowpagesActionAccessController.java
index 9d79481f81..61a707f82c 100644
--- a/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/servlets/YellowpagesActionAccessController.java
+++ b/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/servlets/YellowpagesActionAccessController.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package org.silverpeas.components.yellowpages.servlets;
diff --git a/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/servlets/YellowpagesRequestRouter.java b/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/servlets/YellowpagesRequestRouter.java
index a84cf75b56..1110a6e1ad 100644
--- a/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/servlets/YellowpagesRequestRouter.java
+++ b/yellowpages/yellowpages-war/src/main/java/org/silverpeas/components/yellowpages/servlets/YellowpagesRequestRouter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
  */
 package org.silverpeas.components.yellowpages.servlets;
 
diff --git a/yellowpages/yellowpages-war/src/main/webapp/WEB-INF/tags/silverpeas/yellowpages/contactView.tag b/yellowpages/yellowpages-war/src/main/webapp/WEB-INF/tags/silverpeas/yellowpages/contactView.tag
index 57a43331c7..04e7d66702 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/WEB-INF/tags/silverpeas/yellowpages/contactView.tag
+++ b/yellowpages/yellowpages-war/src/main/webapp/WEB-INF/tags/silverpeas/yellowpages/contactView.tag
@@ -1,5 +1,5 @@
 <%--
-  Copyright (C) 2000 - 2022 Silverpeas
+  Copyright (C) 2000 - 2024 Silverpeas
   
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
   Open Source Software ("FLOSS") applications as described in Silverpeas's
   FLOSS exception. You should have recieved a copy of the text describing
   the FLOSS exception, and it is also available here:
-  "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+  "https://www.silverpeas.org/legal/floss_exception.html"
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
   GNU Affero General Public License for more details.
   
   You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  along with this program.  If not, see <https://www.gnu.org/licenses/>.
   --%>
 
 <%@ tag language="java" pageEncoding="UTF-8" %>
diff --git a/yellowpages/yellowpages-war/src/main/webapp/WEB-INF/web.xml b/yellowpages/yellowpages-war/src/main/webapp/WEB-INF/web.xml
index c8c6a1d93e..0bad84598e 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/WEB-INF/web.xml
+++ b/yellowpages/yellowpages-war/src/main/webapp/WEB-INF/web.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 -->
 
diff --git a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/TopicLink.jsp b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/TopicLink.jsp
index 24a4ae7ed3..35a3d3d9be 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/TopicLink.jsp
+++ b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/TopicLink.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page import="org.silverpeas.components.yellowpages.control.YellowpagesSessionController" %>
diff --git a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/addTopic.jsp b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/addTopic.jsp
index d0021f683b..4857cfce32 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/addTopic.jsp
+++ b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/addTopic.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.contribution.template.publication.PublicationTemplate"%>
diff --git a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/annuaire.jsp b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/annuaire.jsp
index a39ee87dec..4306423cf4 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/annuaire.jsp
+++ b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/annuaire.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page import="org.silverpeas.components.yellowpages.control.DisplayContactsHelper" %>
diff --git a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/checkYellowpages.jsp b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/checkYellowpages.jsp
index d8073d6958..0d7edcbcc3 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/checkYellowpages.jsp
+++ b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/checkYellowpages.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
diff --git a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/contact.jsp b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/contact.jsp
index 528b0d01c3..e96380f875 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/contact.jsp
+++ b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/contact.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.contact.model.CompleteContact" %>
diff --git a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/contactManager.jsp b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/contactManager.jsp
index cf1fc03a12..46b0de46ab 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/contactManager.jsp
+++ b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/contactManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
@@ -90,7 +90,11 @@ if (creation) {
 Form formUpdate = contactComplete.getUpdateForm();
 PagesContext context = (PagesContext) request.getAttribute("PagesContext");
 if (context != null) {
+  context.setCreation(false);
   context.setBorderPrinted(false);
+  if (creation) {
+    context.setCreation(true);
+  }
 }
 
 String readOnly = "";
diff --git a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/groupManager.jsp b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/groupManager.jsp
index 5a2629914a..e20a479472 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/groupManager.jsp
+++ b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/groupManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
diff --git a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/importCSV.jsp b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/importCSV.jsp
index 412bafdbd3..885f266975 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/importCSV.jsp
+++ b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/importCSV.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.components.yellowpages.ImportReport"%>
diff --git a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/modelUsedList.jsp b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/modelUsedList.jsp
index 6320949dbf..2099543b30 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/modelUsedList.jsp
+++ b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/modelUsedList.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 
diff --git a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/printContactList.jsp b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/printContactList.jsp
index 2522800bb5..bd321b6867 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/printContactList.jsp
+++ b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/printContactList.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page import="org.silverpeas.components.yellowpages.control.DisplayContactsHelper" %>
diff --git a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/styleSheets/yellowpages.css b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/styleSheets/yellowpages.css
index bb3764942c..cccde382d9 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/styleSheets/yellowpages.css
+++ b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/styleSheets/yellowpages.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000 - 2022 Silverpeas
+ * Copyright (C) 2000 - 2024 Silverpeas
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -11,7 +11,7 @@
  * Open Source Software ("FLOSS") applications as described in Silverpeas's
  * FLOSS exception.  You should have received a copy of the text describing
  * the FLOSS exception, and it is also available here:
- * "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+ * "https://www.silverpeas.org/legal/floss_exception.html"
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,7 +19,7 @@
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 #searchButton a {
diff --git a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/topicManager.jsp b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/topicManager.jsp
index 8be0f9840e..1087d36c5f 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/topicManager.jsp
+++ b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/topicManager.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@page import="org.silverpeas.core.util.URLUtil"%>
@@ -158,7 +158,7 @@ function addGroup() {
 }
 
 function contactGoTo(id) {
-	location.href = "ContactUpdate?ContactId="+id;
+  sp.formRequest("ContactUpdate?ContactId=" + id).byPostMethod().submit();
 }
 
 function contactDeleteConfirm(id) {
diff --git a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/userFull.jsp b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/userFull.jsp
index 5cff65e6f9..d3e4c07001 100644
--- a/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/userFull.jsp
+++ b/yellowpages/yellowpages-war/src/main/webapp/yellowpages/jsp/userFull.jsp
@@ -1,6 +1,6 @@
 <%--
 
-    Copyright (C) 2000 - 2022 Silverpeas
+    Copyright (C) 2000 - 2024 Silverpeas
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Affero General Public License as
@@ -12,7 +12,7 @@
     Open Source Software ("FLOSS") applications as described in Silverpeas's
     FLOSS exception.  You should have recieved a copy of the text describing
     the FLOSS exception, and it is also available here:
-    "http://www.silverpeas.org/docs/core/legal/floss_exception.html"
+    "https://www.silverpeas.org/legal/floss_exception.html"
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,7 +20,7 @@
     GNU Affero General Public License for more details.
 
     You should have received a copy of the GNU Affero General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 --%>
 <%@ page import="org.silverpeas.core.admin.user.model.UserFull" %>