lists.xwiki.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

notifications

Thread Start a new thread
Download
Threads by month
  • ----- 2026 -----
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2025 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
[email protected]

June 2026

  • 1 participants
  • 1838 discussions
[xwiki/xwiki-platform] 47c4d8: XWIKI-24458: Custom display of simple properties s...
by XWiki Notifications 09 Jun '26

09 Jun '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 47c4d808de68f271d9b5180c541f0f9926369508 https://github.com/xwiki/xwiki-platform/commit/47c4d808de68f271d9b5180c541f… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-06-09 (Tue, 09 Jun 2026) Changed paths: M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/objects/classes/PropertyClass.java M xwiki-platform-core/xwiki-platform-oldcore/src/test/java/com/xpn/xwiki/objects/classes/PropertyClassTest.java Log Message: ----------- XWIKI-24458: Custom display of simple properties should return inline values in view mode Co-Authored-By: Claude Opus 4.8 <noreply(a)anthropic.com> To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
[[email protected]][Issue] Updates for XCOMMONS-3688: Replace the deprecated Maven Verifier with Maven Executor
by XWiki Notifications 09 Jun '26

09 Jun '26
1 0
0 0
[xwiki/xwiki-platform] 552c7d: XWIKI-24458: Custom display of properties shouldn'...
by XWiki Notifications 09 Jun '26

09 Jun '26
Branch: refs/heads/XWIKI-24458 Home: https://github.com/xwiki/xwiki-platform Commit: 552c7d8108644c493baaf8d436505535b001070a https://github.com/xwiki/xwiki-platform/commit/552c7d8108644c493baaf8d43650… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-06-09 (Tue, 09 Jun 2026) Changed paths: M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/objects/classes/PropertyClass.java Log Message: ----------- XWIKI-24458: Custom display of properties shouldn't return inline values in view mode Removed a comment referencing a JIRA issue from the code, as it's not our practice To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
[xwiki/xwiki-platform] 60137b: XWIKI-24458: Custom display of properties shouldn'...
by XWiki Notifications 09 Jun '26

09 Jun '26
Branch: refs/heads/XWIKI-24458 Home: https://github.com/xwiki/xwiki-platform Commit: 60137b0fa11ea4f975c5ee587865c12680f8bbfa https://github.com/xwiki/xwiki-platform/commit/60137b0fa11ea4f975c5ee587865… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-06-09 (Tue, 09 Jun 2026) Changed paths: M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/objects/classes/PropertyClass.java M xwiki-platform-core/xwiki-platform-oldcore/src/test/java/com/xpn/xwiki/objects/classes/PropertyClassTest.java Log Message: ----------- XWIKI-24458: Custom display of properties shouldn't return inline values in view mode * Address review feedback: - Replace the paragraph-detection regular expression with a simpler and cheaper indexOf/lastIndexOf check. - Strip the wrapping top level paragraph in all display modes (not only view), since the default displayers are inline in every mode and block level displayers don't match the single paragraph check anyway. - Strip the paragraph for template based displayers too (they can contain wiki syntax that gets wrapped in a paragraph), removing the special case. Co-Authored-By: Claude Opus 4.8 <noreply(a)anthropic.com> To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
[xwiki/xwiki-platform] 26b2ec: XWIKI-24093: Missing CSRF token check in ImportAction
by XWiki Notifications 09 Jun '26

09 Jun '26
Branch: refs/heads/stable-16.10.x Home: https://github.com/xwiki/xwiki-platform Commit: 26b2ec478d576e45fe7de10354cea3b93f760ae8 https://github.com/xwiki/xwiki-platform/commit/26b2ec478d576e45fe7de10354ce… Author: Michael Hamann <michael.hamann(a)xwiki.com> Date: 2026-06-09 (Tue, 09 Jun 2026) Changed paths: M xwiki-platform-core/xwiki-platform-administration/xwiki-platform-administration-test/xwiki-platform-administration-test-docker/src/test/it/org/xwiki/administration/test/ui/XARImportIT.java M xwiki-platform-core/xwiki-platform-administration/xwiki-platform-administration-test/xwiki-platform-administration-test-pageobjects/src/main/java/org/xwiki/administration/test/po/ImportAdministrationSectionPage.java M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/web/ImportAction.java A xwiki-platform-core/xwiki-platform-oldcore/src/test/java/com/xpn/xwiki/web/ImportActionTest.java M xwiki-platform-core/xwiki-platform-test/xwiki-platform-test-ui/src/main/java/org/xwiki/test/ui/TestUtils.java M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/js/xwiki/importer/import.js Log Message: ----------- XWIKI-24093: Missing CSRF token check in ImportAction * Add CSRF token check in import action. * Add unit tests for ImportAction. * Adapt TestUtils to send the token in `importXar`. * Adapt import.js to send the token. * Start modernizing import.js, use fetch instead of Prototype.js. * Improve import.js to display the plain text error message sent by the server. * Add an integration test to verify that the CSRF error is displayed. (cherry picked from commit 626e8ee2557985d28e2c91895990ddb8e7e9b7b6) To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
[xwiki/xwiki-platform] c79473: XWIKI-24438: Missing async rendering content
by XWiki Notifications 09 Jun '26

09 Jun '26
Branch: refs/heads/stable-16.10.x Home: https://github.com/xwiki/xwiki-platform Commit: c79473246ee93337da2060bffe10b790615ae393 https://github.com/xwiki/xwiki-platform/commit/c79473246ee93337da2060bffe10… Author: Simon Urli <simon.urli(a)xwiki.com> Date: 2026-06-09 (Tue, 09 Jun 2026) Changed paths: M xwiki-platform-core/xwiki-platform-rendering/xwiki-platform-rendering-async/xwiki-platform-rendering-async-default/src/main/java/org/xwiki/rendering/async/internal/DefaultAsyncRendererExecutor.java M xwiki-platform-core/xwiki-platform-rendering/xwiki-platform-rendering-async/xwiki-platform-rendering-async-macro/src/test/resources/macroasync3.test Log Message: ----------- XWIKI-24438: Missing async rendering content (cherry picked from commit cfb11d318d08a5ee07615180897cef867d510316) To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
[xwiki/xwiki-platform] 68b8df: XWIKI-24438: Missing async rendering content
by XWiki Notifications 09 Jun '26

09 Jun '26
Branch: refs/heads/stable-17.10.x Home: https://github.com/xwiki/xwiki-platform Commit: 68b8df382a2650cbca91e2b42b5192bd7581d5c0 https://github.com/xwiki/xwiki-platform/commit/68b8df382a2650cbca91e2b42b51… Author: Simon Urli <simon.urli(a)xwiki.com> Date: 2026-06-09 (Tue, 09 Jun 2026) Changed paths: M xwiki-platform-core/xwiki-platform-rendering/xwiki-platform-rendering-async/xwiki-platform-rendering-async-default/src/main/java/org/xwiki/rendering/async/internal/DefaultAsyncRendererExecutor.java M xwiki-platform-core/xwiki-platform-rendering/xwiki-platform-rendering-async/xwiki-platform-rendering-async-macro/src/test/resources/macroasync3.test Log Message: ----------- XWIKI-24438: Missing async rendering content (cherry picked from commit cfb11d318d08a5ee07615180897cef867d510316) To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
[xwiki/xwiki-platform] 783ad1: XWIKI-24438: Missing async rendering content
by XWiki Notifications 09 Jun '26

09 Jun '26
Branch: refs/heads/stable-18.4.x Home: https://github.com/xwiki/xwiki-platform Commit: 783ad1e2ba03d194dc5a919c1cf024a98a74eacf https://github.com/xwiki/xwiki-platform/commit/783ad1e2ba03d194dc5a919c1cf0… Author: Simon Urli <simon.urli(a)xwiki.com> Date: 2026-06-09 (Tue, 09 Jun 2026) Changed paths: M xwiki-platform-core/xwiki-platform-rendering/xwiki-platform-rendering-async/xwiki-platform-rendering-async-default/src/main/java/org/xwiki/rendering/async/internal/DefaultAsyncRendererExecutor.java M xwiki-platform-core/xwiki-platform-rendering/xwiki-platform-rendering-async/xwiki-platform-rendering-async-macro/src/test/resources/macroasync3.test Log Message: ----------- XWIKI-24438: Missing async rendering content (cherry picked from commit cfb11d318d08a5ee07615180897cef867d510316) To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
[xwiki/xwiki-platform] cfb11d: XWIKI-24438: Missing async rendering content
by XWiki Notifications 09 Jun '26

09 Jun '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: cfb11d318d08a5ee07615180897cef867d510316 https://github.com/xwiki/xwiki-platform/commit/cfb11d318d08a5ee07615180897c… Author: Simon Urli <simon.urli(a)xwiki.com> Date: 2026-06-09 (Tue, 09 Jun 2026) Changed paths: M xwiki-platform-core/xwiki-platform-rendering/xwiki-platform-rendering-async/xwiki-platform-rendering-async-default/src/main/java/org/xwiki/rendering/async/internal/DefaultAsyncRendererExecutor.java M xwiki-platform-core/xwiki-platform-rendering/xwiki-platform-rendering-async/xwiki-platform-rendering-async-macro/src/test/resources/macroasync3.test Log Message: ----------- XWIKI-24438: Missing async rendering content To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
[xwiki/xwiki-platform] 831dfb: [Misc] Fix SonarQube S3516: Refactor Inclusion val...
by XWiki Notifications 09 Jun '26

09 Jun '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 831dfbac2228100ef19046ea9dfdb9da06849aa0 https://github.com/xwiki/xwiki-platform/commit/831dfbac2228100ef19046ea9dfd… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-06-09 (Tue, 09 Jun 2026) Changed paths: M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/uicomponents/widgets/validation/livevalidation_prototype.js Log Message: ----------- [Misc] Fix SonarQube S3516: Refactor Inclusion validator to have a single return path The Inclusion validation function had two `return true` statements (one early return for null+allowNull and one at the end), both always returning the same constant value. This triggered SonarQube rule javascript:S3516 "Functions should not always return the same value". Refactored the null check into an if/else structure so the null handling falls through to the single return at the end of the function. Behavior is identical: null values fail when allowNull is false, non-null values are validated against the inclusion list. Co-authored-by: Claude <noreply(a)anthropic.com> To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • ...
  • 184
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.