Skip to content
Succès

Changes

Summary

  1. Update the build pipeline for the WebEdition project (details)
  2. When the job for building Silverpeas fails, send an email with the log files generated by wildfly with all the classes loaded in the JVM during the integration tests (details)
  3. Refine the failure step in the silverpeas build pipeline. Hprof dump is (details)
  4. Fix SonarQube Maven execution in pipelines. (details)
Commit 1e65aff8523fd6d2bf304c97d4df2e12036153c0 by Miguel Moquillon
Update the build pipeline for the WebEdition project
The file was modifiedsrc/builds/wbe/Jenkinsfile (diff)
Commit c0c9295a0e0ce0d5ab0981da18bf062891a165bd by Miguel Moquillon
When the job for building Silverpeas fails, send an email with the log files generated by wildfly with all the classes loaded in the JVM during the integration tests
The file was modifiedsrc/builds/silverpeas/Jenkinsfile (diff)
Commit 1a4dd1e91ddcba1b9d858bc88f7cabae337d554a by Miguel Moquillon
Refine the failure step in the silverpeas build pipeline. Hprof dump is
done of Wildfly and this dump is then sent by email in case of failure.
The file was modifiedsrc/builds/silverpeas/Jenkinsfile (diff)
Commit 1a3c726bd15b58b1d8b82d9cc1fc5c31a5533a45 by Miguel Moquillon
Fix SonarQube Maven execution in pipelines.

In the pipeline dedicated to construct a build version of Silverpeas and
in the pipeline to release a version of Silverpeas,
the execution of the sonarqube analysis fails because the Maven plugin
of SonarQube isn't found. FIx the pb by specifying explicitly the
groupId and artifactId of the SonarQube Maven plugin.
The file was modifiedsrc/releases/kernel/Jenkinsfile (diff)
The file was modifiedsrc/builds/silverpeas/Jenkinsfile (diff)

Summary

  1. 6.4.4 has been released from build 6.4.4-build250807 (f3347050a5abcac724675a0b1214abef22bb9975).Prepare for development iteration of next version 6.4.5 (details)
  2. Bug #13964 (details)
  3. Bug #14914 (details)
  4. Bug #14207 (details)
  5. Bug #14893 (details)
  6. Bug #14969 (details)
  7. Bug #14975 (details)
  8. Bug #14987 (details)
  9. Bug #12699 (details)
  10. Fix the issues detected by SonarCloud (details)
  11. fix the displayIndex.tag (details)
  12. Bug #14912 (details)
  13. Bug #15048 (details)
  14. Change the build pipeline by specifying explicitly the sonar maven plugin execution goal (details)
  15. Fix a bug in which the goto URL was two times encoded. In AutoRedirectServlet, decode the goto URL (details)
  16. Fix a bug in AutoRedirectServlet in which the goto parameter is directly (details)
  17. Bug #15077 (details)
  18. Bug #15082 (details)
  19. In silverpeas-window.js, encode the shortLink used to pass in the goto (details)
  20. Remove unused property ms.office.installation.path (details)
Commit a8b76ec22f841ac3804d004c5b9bf80dad7ca8e9 by devteam
6.4.4 has been released from build 6.4.4-build250807 (f3347050a5abcac724675a0b1214abef22bb9975).Prepare for development iteration of next version 6.4.5
The file was modifiedcore-web/pom.xml (diff)
The file was modifiedcore-services/personalOrganizer/pom.xml (diff)
The file was modifiedcore-services/tagcloud/pom.xml (diff)
The file was modifiedcore-services/documentTemplate/pom.xml (diff)
The file was modifiedcore-services/importExport/pom.xml (diff)
The file was modifiedpom.xml (diff)
The file was modifiedcore-rs/pom.xml (diff)
The file was modifiedcore-services/contact/pom.xml (diff)
The file was modifiedcore-api/pom.xml (diff)
The file was modifiedcore-services/pom.xml (diff)
The file was modifiedcore-library/pom.xml (diff)
The file was modifiedcore-war/pom.xml (diff)
The file was modifiedcore-services/mylinks/pom.xml (diff)
The file was modifiedcore-services/chat/pom.xml (diff)
The file was modifiedcore-services/viewer/pom.xml (diff)
The file was modifiedcore-services/workflow/pom.xml (diff)
The file was modifiedcore-services/silverstatistics/pom.xml (diff)
The file was modifiedcore-services/search/pom.xml (diff)
The file was modifiedcore-services/pdc/pom.xml (diff)
The file was modifiedcore-services/questioncontainer/pom.xml (diff)
The file was modifiedcore-web-test/pom.xml (diff)
The file was modifiedcore-jcr/pom.xml (diff)
The file was modifiedcore-test/pom.xml (diff)
The file was modifiedcore-services/sharing/pom.xml (diff)
The file was modifiedcore-configuration/pom.xml (diff)
The file was modifiedcore-services/comment/pom.xml (diff)
Commit 0f972639ffb7a7dc434a84f564faa430bd21b246 by Miguel Moquillon
Bug #13964

Fix the bug which is in the list of the connected users. In this page,
the SessionManagement service is invoked to get all the opened user
sessions and for each of them the related user. But, the user in the
session is the one that has been fetched from the database during the
login process, before opening really the session. So, the last login
date attribute of the user is the one of his previous latest session and
not the current one that is set once the session is opened. The fix was
to reuse the user in the newly opened session when setting its login
date attribute before saving his data in the database.
The file was modifiedcore-web/src/main/java/org/silverpeas/core/web/authentication/SilverpeasSessionOpener.java (diff)
The file was modifiedcore-api/src/test/java/org/silverpeas/core/contribution/ContributionModelTest.java (diff)
The file was modifiedcore-services/chat/src/main/java/org/silverpeas/core/chat/ChatUser.java (diff)
The file was modifiedcore-library/src/main/java/org/silverpeas/core/security/session/SessionInfo.java (diff)
The file was modifiedcore-war/src/main/java/org/silverpeas/web/directory/control/DirectorySessionController.java (diff)
The file was modifiedcore-api/src/test/java/org/silverpeas/core/contribution/MyUser.java (diff)
The file was modifiedcore-configuration/src/main/config/resources/StringTemplates/core/directory/user_de.st (diff)
The file was modifiedcore-jcr/src/test/java/org/silverpeas/core/jcr/JCRNodeHandlingTest.java (diff)
The file was modifiedcore-configuration/src/main/config/resources/StringTemplates/core/directory/user_fr.st (diff)
The file was modifiedcore-configuration/src/main/config/resources/StringTemplates/core/directory/user_en.st (diff)
The file was modifiedcore-war/src/main/webapp/socialNetwork/jsp/myContactProfil/myContactProfile.jsp (diff)
The file was modifiedcore-war/src/main/webapp/socialNetwork/jsp/profil/profilPublic.jsp (diff)
The file was modifiedcore-library/src/main/java/org/silverpeas/core/admin/user/dao/UserDAO.java (diff)
The file was modifiedcore-api/src/main/java/org/silverpeas/core/admin/user/model/User.java (diff)
The file was modifiedcore-jcr/src/test/java/org/silverpeas/core/jcr/SilverpeasJCRSchemaRegisterTest.java (diff)
The file was modifiedcore-jcr/src/test/java/org/silverpeas/core/jcr/impl/oak/DocumentStoreTest.java (diff)
The file was modifiedcore-api/src/main/java/org/silverpeas/core/util/DateUtil.java (diff)
The file was modifiedcore-war/src/main/webapp/portlets/jsp/myContacts/portlet.jsp (diff)
The file was modifiedcore-api/src/main/java/org/silverpeas/core/security/session/SilverpeasUserSession.java (diff)
The file was modifiedcore-web/src/main/resources/META-INF/silverFunctions.tld (diff)
The file was modifiedcore-library/src/main/java/org/silverpeas/core/admin/user/model/UserDetail.java (diff)
The file was modifiedcore-jcr/src/test/java/org/silverpeas/test/TestUser.java (diff)
Commit 1374e03a4fb959910e59eb77ccb8e8c3662b2bce by Miguel Moquillon
Bug #14914

Fix bug. Now the access to the spaces and component instances
returned by the admin search is checked.
The file was modifiedcore-war/src/main/webapp/jobSearchPeas/jsp/jobSearchResult.jsp (diff)
The file was modifiedcore-war/src/main/java/org/silverpeas/web/jobsearch/servlets/JobSearchPeasRequestRouter.java (diff)
The file was modifiedcore-war/src/main/java/org/silverpeas/web/jobsearch/JobSearchPeasSessionController.java (diff)
The file was modifiedcore-war/src/main/java/org/silverpeas/web/jobsearch/SearchResult.java (diff)
Commit 0280ead6ac8e7ef6383a49e14d60c490fd77b2c8 by Miguel Moquillon
Bug #14207

Remove the WS (aka SOAP) support of CMIS as this one doesn't work
anymore with the recent SOAP stacks.
This remove was already done by others vendors like Nuxeo.
The file was modifiedcore-war/src/main/webapp/WEB-INF/web.xml (diff)
Commit 2af949b086000c7775e88a86fa3575e84cfe9307 by Miguel Moquillon
Bug #14893

Bug fixed with silverpeas-kernel 1.3
The file was modifiedcore-test/pom.xml (diff)
The file was modifiedcore-api/pom.xml (diff)
Commit dcf0b1c573c47fb008af34c78d3a0c41c1ae0221 by Miguel Moquillon
Bug #14969

For the subscriptions on nodes (folders in Kmelia for example), take
into account the move of nodes. In the case the node is move into
another component instance, then any subscriptions on that node are
renewed on the node.

In order to do this, add the notification on nodes move.
The file was modifiedcore-library/src/main/java/org/silverpeas/core/node/service/DefaultNodeService.java (diff)
The file was modifiedcore-library/src/main/java/org/silverpeas/core/subscription/listeners/SubscriptionNodeEventListener.java (diff)
Commit e2b601945d5818ad12eaff6bc963ffcc3b4bdc64 by Miguel Moquillon
Bug #14975

In a form, a publication picker field is rendered as text in read-only mode.
the TextDisplayer used for doing encodes the value for HTML for any
fields other than file and date field. Hence the bug with publication
URL fields. So the fix is avoid the HTML encoding for such type of fields.
(Publication URLs field are the read-only rendering of publications
picker fiel.d)
The file was modifiedcore-library/src/main/java/org/silverpeas/core/contribution/content/form/displayers/TextDisplayer.java (diff)
Commit 3e3b11774c02f96463cf4bdcb5e8fc104d1203db by Miguel Moquillon
Bug #14987

The default operator wasn't used in plain textual search. Fix it.
The file was modifiedcore-library/src/main/java/org/silverpeas/core/index/search/model/IndexSearcher.java (diff)
Commit cfd91a6082252ebbe03e14a54724e3ee7523aff6 by Miguel Moquillon
Bug #12699

Now, in the WYSIWYG editor, for the image insertion or update, only
images of a given MIME type are allowed (those supported by our
current CKEditor version: jpeg, gif, webp, and png)
The file was modifiedcore-war/src/main/webapp/attachment/jsp/editAttachedFiles.jsp (diff)
Commit 8f8240c58b3825233c03d8fbaa33a17dcfe1a5af by Miguel Moquillon
Fix the issues detected by SonarCloud
The file was modifiedcore-war/src/main/webapp/attachment/jsp/editAttachedFiles.jsp (diff)
The file was modifiedcore-war/src/main/webapp/WEB-INF/tags/silverpeas/util/displayIndex.tag (diff)
Commit 85df8e6064ca490b302bb8383e5dc40db5b6ad1f by Miguel Moquillon
Bug #14912

In ExportCSVBuilder, replace the use of DateUtil by TemporalFormatter to
format a Date object in text. For doing, the conversion of the date to
OffsetDateTime is required otherwise an exception is thrown because the
Instant representation of the Date don't support some temporal fields.
The file was modifiedcore-web/src/main/java/org/silverpeas/core/web/export/ExportCSVBuilder.java (diff)
The file was modifiedcore-web/src/test/java/org/silverpeas/core/web/export/ExportCSVBuilderTest.java (diff)
The file was modifiedcore-api/src/main/java/org/silverpeas/core/date/TemporalFormatter.java (diff)
Commit 5210fd8520a594dba978e98581b904c67ab1654d by Miguel Moquillon
Bug #15048

Fix bug by using the function js encodeURIComponent(string) for each URL
parameters passed in the HTTP search request. By doing so, the special
characters are correctly encoded and not interpreted.
The file was modifiedcore-war/src/main/webapp/util/javaScript/silverpeas.js (diff)
Commit 54db41e746f84a02696bd202b2840b6bfdedd6a1 by Miguel Moquillon
Change the build pipeline by specifying explicitly the sonar maven plugin execution goal
The file was modifiedJenkinsfile (diff)
Commit 7911838d7ce13175eb453979a5d2c72cb4a5b144 by Miguel Moquillon
Fix a bug in which the goto URL was two times encoded. In AutoRedirectServlet, decode the goto URL
The file was modifiedcore-war/src/main/webapp/util/javaScript/silverpeas-window.js (diff)
The file was modifiedcore-war/src/main/java/org/silverpeas/web/AutoRedirectServlet.java (diff)
Commit b1571e8de07832d62242b633fdaab98e66efd7bf by Miguel Moquillon
Fix a bug in AutoRedirectServlet in which the goto parameter is directly
encoded for URL even in the case it isn't set, driving to a
NullPointerException. Now, all the URL parameters are encoded when
they're valued.
The file was modifiedcore-war/src/main/java/org/silverpeas/web/AutoRedirectServlet.java (diff)
The file was modifiedcore-war/src/main/webapp/look/jsp/spaceHomePage.jsp (diff)
Commit 71aeb26ef5cb8fbfe1acd1b49ca4ed0c54ce3b67 by Miguel Moquillon
Bug #15077

When files are uploaded in a Kmelia instance, the parameters (like the
kmelia instance id, the publication name, and so on) are passed directly
in the URL (hu ???). This is why publication name, description and
keywords are URL encoded. So, in the servlet targeted by the URL, these
parameters has to be decoded before being used to build the publication.
The file was modifiedcore-war/src/main/java/org/silverpeas/web/importexport/servlets/ImportDragAndDrop.java (diff)
The file was modifiedcore-services/importExport/src/main/java/org/silverpeas/core/importexport/control/ImportSettings.java (diff)
Commit 8300d3d64687fe57c590ede3f5d74f41a4b8153a by Miguel Moquillon
Bug #15082

After refactorized the code of the displayers to clean up some code
duplications, the HTML time input rendering has been missed in the
TimeFieldDisplayer.
The file was modifiedcore-library/src/main/java/org/silverpeas/core/contribution/content/form/displayers/TimeFieldDisplayer.java (diff)
Commit 4a6681ae2cac4d6810f8fda5778c9eb7bab66fda by Miguel Moquillon
In silverpeas-window.js, encode the shortLink used to pass in the goto
parameter when redirecting the request to the targeted resource in
Silverpeas.
The file was modifiedcore-war/src/main/webapp/util/javaScript/silverpeas-window.js (diff)
Commit 05aa464338696ef47c206607ee10a1efba3171d3 by Miguel Moquillon
Remove unused property ms.office.installation.path
The file was modifiedcore-library/src/test/resources/org/silverpeas/util/attachment/Attachment.properties (diff)
The file was modifiedcore-configuration/src/main/config/properties/org/silverpeas/util/attachment/Attachment.properties (diff)
The file was modifiedcore-war/src/test/resources/org/silverpeas/util/attachment/Attachment.properties (diff)
The file was modifiedcore-web/src/integration-test/resources/org/silverpeas/util/attachment/Attachment.properties (diff)
The file was modifiedcore-library/src/integration-test/resources/org/silverpeas/util/attachment/Attachment.properties (diff)

Summary

  1. 6.4.4 has been released from build 6.4.4-build250807 (1dd00b7122f70b314131dc91b55e2cc54b605c34).Prepare for development iteration of next version 6.4.5 (details)
  2. Bug #14998 (details)
  3. Bug #15020 (details)
  4. Bug #15023 (details)
  5. Identifiant double (details)
  6. Change the build pipeline by specifying explicitly the sonar maven plugin execution goal (details)
  7. bug #15047 : The default value of a item is now well displayed in the update workflow forms (details)
Commit 8aa211b5cdd0d2eb1bb470ede8de00fc23c3d579 by devteam
6.4.4 has been released from build 6.4.4-build250807 (1dd00b7122f70b314131dc91b55e2cc54b605c34).Prepare for development iteration of next version 6.4.5
The file was modifiedjdbcConnector/jdbcConnector-war/pom.xml (diff)
The file was modifiedscheduleEvent/scheduleEvent-war/pom.xml (diff)
The file was modifiedorganizationchart/pom.xml (diff)
The file was modifiedcommunity/pom.xml (diff)
The file was modifiedyellowpages/pom.xml (diff)
The file was modifiedwebPages/webPages-configuration/pom.xml (diff)
The file was modifieddelegatednews/pom.xml (diff)
The file was modifiedmailinglist/mailinglist-war/pom.xml (diff)
The file was modifiedmydb/mydb-war/pom.xml (diff)
The file was modifiedsuggestionBox/suggestionBox-war/pom.xml (diff)
The file was modifiedwebPages/webPages-library/pom.xml (diff)
The file was modifieddataWarning/dataWarning-war/pom.xml (diff)
The file was modifiedquizz/quizz-war/pom.xml (diff)
The file was modifiedmailinglist/mailinglist-library/pom.xml (diff)
The file was modifiedprojectManager/projectManager-library/pom.xml (diff)
The file was modifiedformsOnline/formsOnline-library/pom.xml (diff)
The file was modifiedalmanach/almanach-configuration/pom.xml (diff)
The file was modifieddataWarning/pom.xml (diff)
The file was modifiedprojectManager/pom.xml (diff)
The file was modifiedcommunity/community-configuration/pom.xml (diff)
The file was modifiedrssAggregator/rssAggregator-library/pom.xml (diff)
The file was modifiedsilverCrawler/silverCrawler-configuration/pom.xml (diff)
The file was modifiedprocessManager/processManager-configuration/pom.xml (diff)
The file was modifiedsilverCrawler/pom.xml (diff)
The file was modifiedwhitePages/pom.xml (diff)
The file was modifiedsurvey/survey-war/pom.xml (diff)
The file was modifiedyellowpages/yellowpages-library/pom.xml (diff)
The file was modifiedsurvey/survey-configuration/pom.xml (diff)
The file was modifiedforums/forums-library/pom.xml (diff)
The file was modifiedcommunity/community-war/pom.xml (diff)
The file was modifiedclassifieds/classifieds-library/pom.xml (diff)
The file was modifiedorganizationchart/organizationchart-war/pom.xml (diff)
The file was modifiedwebPages/webPages-war/pom.xml (diff)
The file was modifiedsuggestionBox/pom.xml (diff)
The file was modifiedjdbcConnector/pom.xml (diff)
The file was modifiedquizz/quizz-library/pom.xml (diff)
The file was modifiedquickinfo/quickinfo-configuration/pom.xml (diff)
The file was modifiedforums/forums-configuration/pom.xml (diff)
The file was modifiedmydb/pom.xml (diff)
The file was modifiedscheduleEvent/scheduleEvent-configuration/pom.xml (diff)
The file was modifiedalmanach/almanach-library/pom.xml (diff)
The file was modifiedorganizationchart/organizationchart-configuration/pom.xml (diff)
The file was modifiedscheduleEvent/scheduleEvent-library/pom.xml (diff)
The file was modifiedrssAggregator/rssAggregator-configuration/pom.xml (diff)
The file was modifiedsuggestionBox/suggestionBox-library/pom.xml (diff)
The file was modifieddelegatednews/delegatednews-war/pom.xml (diff)
The file was modifiedprojectManager/projectManager-configuration/pom.xml (diff)
The file was modifiedwebPages/pom.xml (diff)
The file was modifiedscheduleEvent/pom.xml (diff)
The file was modifiedresourcesManager/pom.xml (diff)
The file was modifiedsurvey/pom.xml (diff)
The file was modifiedhyperlink/hyperlink-war/pom.xml (diff)
The file was modifiedinfoLetter/pom.xml (diff)
The file was modifiedmailinglist/mailinglist-configuration/pom.xml (diff)
The file was modifiedwebSites/pom.xml (diff)
The file was modifiedhyperlink/pom.xml (diff)
The file was modifiedclassifieds/pom.xml (diff)
The file was modifiedquickinfo/quickinfo-library/pom.xml (diff)
The file was modifiedquickinfo/quickinfo-war/pom.xml (diff)
The file was modifiedinfoLetter/infoLetter-war/pom.xml (diff)
The file was modifiedwhitePages/whitePages-configuration/pom.xml (diff)
The file was modifiedgallery/pom.xml (diff)
The file was modifiedgallery/gallery-library/pom.xml (diff)
The file was modifiedinfoLetter/infoLetter-library/pom.xml (diff)
The file was modifiedspaceMembers/spaceMembers-library/pom.xml (diff)
The file was modifiedquestionReply/questionReply-war/pom.xml (diff)
The file was modifiedformsOnline/formsOnline-war/pom.xml (diff)
The file was modifiedquizz/pom.xml (diff)
The file was modifiedkmelia/kmelia-war/pom.xml (diff)
The file was modifiedalmanach/pom.xml (diff)
The file was modifiedrssAggregator/pom.xml (diff)
The file was modifiedspaceMembers/pom.xml (diff)
The file was modifiedresourcesManager/resourcesManager-war/pom.xml (diff)
The file was modifiedprocessManager/pom.xml (diff)
The file was modifiedhyperlink/hyperlink-configuration/pom.xml (diff)
The file was modifiedgallery/gallery-war/pom.xml (diff)
The file was modifiedclassifieds/classifieds-configuration/pom.xml (diff)
The file was modifieddelegatednews/delegatednews-configuration/pom.xml (diff)
The file was modifiedrssAggregator/rssAggregator-war/pom.xml (diff)
The file was modifiedsurvey/survey-library/pom.xml (diff)
The file was modifiedjdbcConnector/jdbcConnector-library/pom.xml (diff)
The file was modifiedprocessManager/processManager-library/pom.xml (diff)
The file was modifieddataWarning/dataWarning-library/pom.xml (diff)
The file was modifiedkmelia/pom.xml (diff)
The file was modifiedorganizationchart/organizationchart-library/pom.xml (diff)
The file was modifiedyellowpages/yellowpages-war/pom.xml (diff)
The file was modifiedspaceMembers/spaceMembers-war/pom.xml (diff)
The file was modifieddelegatednews/delegatednews-library/pom.xml (diff)
The file was modifiedkmelia/kmelia-configuration/pom.xml (diff)
The file was modifiedmailinglist/pom.xml (diff)
The file was modifiedblog/blog-configuration/pom.xml (diff)
The file was modifiedblog/blog-war/pom.xml (diff)
The file was modifiedhyperlink/hyperlink-library/pom.xml (diff)
The file was modifiedresourcesManager/resourcesManager-configuration/pom.xml (diff)
The file was modifiedyellowpages/yellowpages-configuration/pom.xml (diff)
The file was modifiedclassifieds/classifieds-war/pom.xml (diff)
The file was modifiedprojectManager/projectManager-war/pom.xml (diff)
The file was modifiedquestionReply/questionReply-library/pom.xml (diff)
The file was modifiedinfoLetter/infoLetter-configuration/pom.xml (diff)
The file was modifiedforums/pom.xml (diff)
The file was modifiedwebSites/webSites-configuration/pom.xml (diff)
The file was modifiedformsOnline/formsOnline-configuration/pom.xml (diff)
The file was modifiedprocessManager/processManager-war/pom.xml (diff)
The file was modifiedspaceMembers/spaceMembers-configuration/pom.xml (diff)
The file was modifiedmydb/mydb-library/pom.xml (diff)
The file was modifiedwhitePages/whitePages-war/pom.xml (diff)
The file was modifiedwebSites/webSites-library/pom.xml (diff)
The file was modifiedcommunity/community-library/pom.xml (diff)
The file was modifiedkmelia/kmelia-library/pom.xml (diff)
The file was modifieddataWarning/dataWarning-configuration/pom.xml (diff)
The file was modifiedwhitePages/whitePages-library/pom.xml (diff)
The file was modifiedjdbcConnector/jdbcConnector-configuration/pom.xml (diff)
The file was modifiedmydb/mydb-configuration/pom.xml (diff)
The file was modifiedgallery/gallery-configuration/pom.xml (diff)
The file was modifiedquickinfo/pom.xml (diff)
The file was modifiedsilverCrawler/silverCrawler-library/pom.xml (diff)
The file was modifiedwebSites/webSites-war/pom.xml (diff)
The file was modifiedquestionReply/pom.xml (diff)
The file was modifiedblog/blog-library/pom.xml (diff)
The file was modifiedalmanach/almanach-war/pom.xml (diff)
The file was modifiedpom.xml (diff)
The file was modifiedresourcesManager/resourcesManager-library/pom.xml (diff)
The file was modifiedsilverCrawler/silverCrawler-war/pom.xml (diff)
The file was modifiedblog/pom.xml (diff)
The file was modifiedsuggestionBox/suggestionBox-configuration/pom.xml (diff)
The file was modifiedquizz/quizz-configuration/pom.xml (diff)
The file was modifiedformsOnline/pom.xml (diff)
The file was modifiedforums/forums-war/pom.xml (diff)
The file was modifiedquestionReply/questionReply-configuration/pom.xml (diff)
Commit bb0eae5a90ac3fd88deb907af9a674117a117779 by Miguel Moquillon
Bug #14998

When browsing the publications to link, avoid to update in the session
the list of publications in the selected folder.
Now, when the browing of DEMs is done within the context of linking
publications, the list of publications of the selected folder is asked
explicitly by using the KmeliaService instead of using the
KmeliaSessionController which works with the user session.
The file was modifiedkmelia/kmelia-war/src/main/java/org/silverpeas/components/kmelia/servlets/AjaxPublicationsListServlet.java (diff)
Commit 5ec9942e8003275deb08c91ceb8380116417c82b by Miguel Moquillon
Bug #15020

In Kmelia: nobody can validate a publication in the bin
The file was modifiedkmelia/kmelia-war/src/main/webapp/kmelia/jsp/publication.jsp (diff)
Commit 078aba6dbab583b937e4a738fee77bd9155eb7b5 by Miguel Moquillon
Bug #15023

Just removed the attribut "size" on the input type text.
I prefer to defined tis by CSS.
The file was modifiedkmelia/kmelia-war/src/main/webapp/kmelia/jsp/treeview.jsp (diff)
The file was modifiedkmelia/kmelia-war/src/main/webapp/kmelia/jsp/oneLevel.jsp (diff)
Commit c928c709d53f37d7ad7e745089276263cb9a35bb by Miguel Moquillon
Identifiant double

An identifiant was using two times
The file was modifiedkmelia/kmelia-war/src/main/webapp/kmelia/jsp/oneLevel.jsp (diff)
The file was modifiedkmelia/kmelia-war/src/main/webapp/kmelia/jsp/treeview.jsp (diff)
Commit adbd8c81b05c48ff8be06380fc4eef925592b2ab by Miguel Moquillon
Change the build pipeline by specifying explicitly the sonar maven plugin execution goal
The file was modifiedJenkinsfile (diff)
The file was modifiedsuggestionBox/suggestionBox-library/src/main/java/org/silverpeas/components/suggestionbox/model/Suggestion.java (diff)
The file was modifiedsuggestionBox/suggestionBox-war/src/main/java/org/silverpeas/components/suggestionbox/web/SuggestionEntity.java (diff)
Commit 7a9e925e254f007a4522470355bf55274b725991 by Miguel Moquillon
bug #15047 : The default value of a item is now well displayed in the update workflow forms
The file was modifiedprocessManager/processManager-war/src/main/java/org/silverpeas/processmanager/servlets/ProcessManagerRequestRouter.java (diff)

Summary

  1. 6.4.4 has been released from build 6.4.4-build250807 (00897b0d98fcda4b9de1c512ded374aa33410f6f).Prepare for development iteration of next version 6.4.5 (details)
Commit 9864ac175bef2074a5f17f5ce4b59a95679cc286 by devteam
6.4.4 has been released from build 6.4.4-build250807 (00897b0d98fcda4b9de1c512ded374aa33410f6f).Prepare for development iteration of next version 6.4.5
The file was modifiedpom.xml (diff)

Summary

  1. 6.4.4 has been released from build 6.4.4-build250807 (6e5936ffe892e71fb63de6dc059da8ad09b72c90).Prepare for development iteration of next version 6.4.5 (details)
Commit 84f3bb87293f67315637ae5f1b53d3ca360502a9 by devteam
6.4.4 has been released from build 6.4.4-build250807 (6e5936ffe892e71fb63de6dc059da8ad09b72c90).Prepare for development iteration of next version 6.4.5
The file was modifiedbuild.gradle (diff)

Summary

  1. 6.4.4 has been released from build 6.4.4-build250807 (6837d524e3282a03e2de06fa1f14b7c93c7608b1).Prepare for development iteration of next version 6.4.5 (details)
Commit a73a000198208cad87d72fdf9157515e8267f081 by devteam
6.4.4 has been released from build 6.4.4-build250807 (6837d524e3282a03e2de06fa1f14b7c93c7608b1).Prepare for development iteration of next version 6.4.5
The file was modifiedpom.xml (diff)

Summary

  1. 6.4.4 has been released from build 6.4.4-build250807 (da6c8759aefbfca8c2e0388f89a2d70a0d0cc2d9).Prepare for development iteration of next version 6.4.5 (details)
  2. Feature #14946 (details)
  3. Add missing properties in wave, sobre, prima (details)
  4. Fix #14947 (details)
  5. Feature #14940 (details)
  6. Fix the bug of an exception thrown when trying to make the news list to (details)
  7. Feature #14963 (details)
  8. Feature #15057 (details)
  9. Feature #15057 (details)
  10. Change the build pipeline by specifying explicitly the sonar maven plugin execution goal (details)
  11. Feature #15060 (details)
Commit 464b1d84238d4875b467b962635a3ae56700eef0 by devteam
6.4.4 has been released from build 6.4.4-build250807 (da6c8759aefbfca8c2e0388f89a2d70a0d0cc2d9).Prepare for development iteration of next version 6.4.5
The file was modifiedaurora/pom.xml (diff)
The file was modifiedpom.xml (diff)
The file was modifiedaurora/aurora-configuration/pom.xml (diff)
The file was modifiedaurora/aurora-war/pom.xml (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/util/viewGenerator/settings/Aurora.properties (diff)
The file was modifiedaurora/aurora-war/src/main/webapp/look/jsp/bodyPartAurora.jsp (diff)
Commit eb54d7cad0897e5ab4125cf692fc197556a73a96 by Sébastien Vuillet
Add missing properties in wave, sobre, prima
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/util/viewGenerator/settings/Sobre.properties (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/util/viewGenerator/settings/prima.properties (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/util/viewGenerator/settings/waves.properties (diff)
The file was modifiedaurora/aurora-war/src/main/webapp/look/jsp/spaceHomePage.jsp (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/util/viewGenerator/settings/Aurora.properties (diff)
The file was modifiedaurora/aurora-war/src/main/java/org/silverpeas/looks/aurora/LookAuroraHelper.java (diff)
Commit c32960abb5f65c55322b9fbdbdf7d982940394e2 by Miguel Moquillon
Fix the bug of an exception thrown when trying to make the news list to
render in the home page for a non configured news applications
The file was modifiedaurora/aurora-war/src/main/java/org/silverpeas/looks/aurora/LookAuroraHelper.java (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/util/viewGenerator/settings/waves.properties (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/util/viewGenerator/settings/Sobre.properties (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/looks/aurora/multilang/lookBundle_en.properties (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/util/viewGenerator/settings/prima.properties (diff)
The file was addedaurora/aurora-war/src/main/webapp/look/jsp/listOfPublications.jsp
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/looks/aurora/multilang/lookBundle_fr.properties (diff)
The file was modifiedaurora/aurora-war/src/main/webapp/WEB-INF/tags/silverpeas/look/displayPublications.tag (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/util/viewGenerator/settings/Aurora.properties (diff)
The file was modifiedaurora/aurora-war/src/main/java/org/silverpeas/looks/aurora/LookAuroraHelper.java (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/looks/aurora/multilang/lookBundle.properties (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/looks/aurora/multilang/lookBundle_de.properties (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/looks/aurora/multilang/lookBundle_ru.properties (diff)
The file was addedaurora/aurora-war/src/main/webapp/look/jsp/listOfAppsNews.jsp
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/util/viewGenerator/settings/prima.properties (diff)
The file was modifiedaurora/aurora-war/src/main/webapp/WEB-INF/tags/silverpeas/look/displayNews.tag (diff)
The file was modifiedaurora/aurora-war/src/main/java/org/silverpeas/looks/aurora/LookAuroraHelper.java (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/util/viewGenerator/settings/Aurora.properties (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/util/viewGenerator/settings/waves.properties (diff)
The file was modifiedaurora/aurora-configuration/src/main/config/properties/org/silverpeas/util/viewGenerator/settings/Sobre.properties (diff)
Commit bd7a9a9a56292baf6b26d871fb8f3c7d40551ac1 by Miguel Moquillon
Feature #15057

Fix the issues detected by SonarQube: remove in listOfAppsNews.jsp the
event handlers from the <li> element and add instead, as child element,
the <a> to take in charge the click and keypress events.

Because listOfAppsNews.jsp and listOfNewsDelegated.jsp are similar,
factorize them into one single jsp file: listOfAppsNews.jsp.
The file was modifiedaurora/aurora-war/src/main/webapp/look/jsp/listOfAppsNews.jsp (diff)
The file was modifiedaurora/aurora-war/src/main/webapp/WEB-INF/tags/silverpeas/look/displayNews.tag (diff)
The file was modifiedaurora/aurora-war/src/main/webapp/look/jsp/css/aurora.css (diff)
The file was removedaurora/aurora-war/src/main/webapp/look/jsp/listOfNewsDelegated.jsp
Commit cba3ddcb9c068b3d3fa7fc5c2da97ee0774102d8 by Miguel Moquillon
Change the build pipeline by specifying explicitly the sonar maven plugin execution goal
The file was modifiedJenkinsfile (diff)
The file was modifiedaurora/aurora-war/src/main/webapp/look/jsp/listOfAppsNews.jsp (diff)
The file was modifiedaurora/aurora-war/src/main/java/org/silverpeas/looks/aurora/LookAuroraHelper.java (diff)

Summary

  1. 6.4.4 has been released from build 6.4.4-build250807 (11db763e2ccbce9d7527045b39f8663ddb356edc).Prepare for development iteration of next version 6.4.5 (details)
  2. Update dependency on Silverpeas to version 6.4.5-build250811 (details)
  3. Feature #14908 - 4 (details)
  4. Fix #14949 (details)
  5. Fix #14954 (details)
  6. Update dependency on Silverpeas to version 6.4.5-build250814 (details)
  7. re introduce spmobile.css in pub content iframe (details)
  8. Update dependency on Silverpeas to version 6.4.5-build250901 (details)
  9. Update dependency on Silverpeas to version 6.4.5-build250904 (details)
  10. Update dependency on Silverpeas to version 6.4.5-build250926 (details)
  11. Fix report #15000 (details)
  12. Update dependency on Silverpeas to version 6.4.5-build251021 (details)
  13. Update dependency on Silverpeas to version 6.4.5-build251023 (details)
  14. Update dependency on Silverpeas to version 6.4.5-build251110 (details)
  15. Update dependency on Silverpeas to version 6.4.5-build251125 (details)
  16. Update dependency on Silverpeas to version 6.4.5-build251127 (details)
  17. Update dependency on Silverpeas to version 6.4.5-build251201 (details)
  18. Fix #15079 (details)
  19. Fix #15033 (details)
  20. Fix #15078 (details)
  21. Update dependency on Silverpeas to version 6.4.5-build251203 (details)
  22. Update dependency on Silverpeas to version 6.4.5-build251208 (details)
Commit 4c8d9ed49c25d5672f194cf8224c6c2105b3f050 by devteam
6.4.4 has been released from build 6.4.4-build250807 (11db763e2ccbce9d7527045b39f8663ddb356edc).Prepare for development iteration of next version 6.4.5
The file was modifiedmobile-war/pom.xml (diff)
The file was modifiedpom.xml (diff)
The file was modifiedmobile-configuration/pom.xml (diff)
Commit c2a7f9bf69bb8824636c677bfc3cc0f3361090b6 by devteam
Update dependency on Silverpeas to version 6.4.5-build250811
The file was modifiedpom.xml (diff)
The file was modifiedmobile-war/src/main/java/org/silverpeas/mobile/client/SpMobil.java (diff)
The file was modifiedmobile-war/src/main/java/org/silverpeas/mobile/client/components/base/widgets/SelectableItem.java (diff)
The file was modifiedmobile-war/src/main/java/org/silverpeas/mobile/client/apps/navigation/pages/widgets/FavoriteItem.java (diff)
The file was modifiedmobile-war/src/main/java/org/silverpeas/mobile/client/apps/favorites/pages/FavoritesPage.java (diff)
The file was modifiedmobile-war/src/main/java/org/silverpeas/mobile/client/apps/documents/pages/PublicationPage.java (diff)
The file was modifiedmobile-war/src/main/java/org/silverpeas/mobile/client/apps/documents/DocumentsApp.java (diff)
The file was modifiedmobile-war/src/main/java/org/silverpeas/mobile/client/apps/documents/pages/GedNavigationPage.java (diff)
The file was modifiedmobile-war/src/main/java/org/silverpeas/mobile/client/apps/documents/pages/widgets/LinkedPublicationItem.java (diff)
Commit cadff38e62f676a08fc5855a0dee0f6454253f98 by devteam
Update dependency on Silverpeas to version 6.4.5-build250814
The file was modifiedpom.xml (diff)
Commit 727e311b9c64189d21f7ec98a4db8f2b5be74403 by Sébastien Vuillet
re introduce spmobile.css in pub content iframe
The file was modifiedmobile-war/src/main/java/org/silverpeas/mobile/server/servlets/PublicationContentServlet.java (diff)
Commit f3d898ed6b8e95d26eee9bf4c566e853d12794e5 by devteam
Update dependency on Silverpeas to version 6.4.5-build250901
The file was modifiedpom.xml (diff)
Commit 97fcfd0733c605f68d6e423d2ee2f01a3f6895e5 by devteam
Update dependency on Silverpeas to version 6.4.5-build250904
The file was modifiedpom.xml (diff)
Commit 5b73c48b9866cfd468cf908473c3dffc7d51de75 by devteam
Update dependency on Silverpeas to version 6.4.5-build250926
The file was modifiedpom.xml (diff)
The file was modifiedmobile-war/src/main/webapp/spmobile/spmobil.jsp (diff)
The file was modifiedmobile-war/src/main/java/org/silverpeas/mobile/client/SpMobil.java (diff)
Commit 8b3e2847ff204bfd0bd866db713d367bb43c95de by devteam
Update dependency on Silverpeas to version 6.4.5-build251021
The file was modifiedpom.xml (diff)
Commit 67fa6df7c04d4f0607f6939e8cdb057e8dcbd401 by devteam
Update dependency on Silverpeas to version 6.4.5-build251023
The file was modifiedpom.xml (diff)
Commit 52df468237dac172b4ac72c611610c9ac0d5a182 by devteam
Update dependency on Silverpeas to version 6.4.5-build251110
The file was modifiedpom.xml (diff)
Commit dc420c72aff32c2b6ba575afae5db69e56323a90 by devteam
Update dependency on Silverpeas to version 6.4.5-build251125
The file was modifiedpom.xml (diff)
Commit a64e88d81e79c2249c4324077571caccdb95559a by devteam
Update dependency on Silverpeas to version 6.4.5-build251127
The file was modifiedpom.xml (diff)
Commit 37b910cc1b784c2417fb00d69f6f4b0305f3874a by devteam
Update dependency on Silverpeas to version 6.4.5-build251201
The file was modifiedpom.xml (diff)
The file was modifiedmobile-war/src/main/java/org/silverpeas/mobile/client/components/base/widgets/AvatarUpload.java (diff)
The file was modifiedmobile-war/src/main/java/org/silverpeas/mobile/server/services/ServiceDocuments.java (diff)
The file was modifiedmobile-war/src/main/java/org/silverpeas/mobile/client/components/base/NavigationMenu.java (diff)
Commit 7fac853ba5c2b0b4a54488b0c3e2df518386afa3 by devteam
Update dependency on Silverpeas to version 6.4.5-build251203
The file was modifiedpom.xml (diff)
Commit 5699807b4b02026efdbcd5a7cd5a1595b05e5768 by devteam
Update dependency on Silverpeas to version 6.4.5-build251208
The file was modifiedpom.xml (diff)