There is 1 comment.
 
 
XWiki Platform / cid:jira-generated-image-avatar-4fdc1cae-aeac-4df5-b1f7-ad05a118377a XWIKI-22923 Closed

Missing detailed warning message when force editing on application pages

 
View issue   ยท   Add comment
 

1 comment

 
cid:jira-generated-image-avatar-53e75acc-4f46-498b-9b77-636cfdd98421 Marius Dumitru Florea on 04/Mar/25 09:34
 

The inplace editor retrieves the edit confirmation message with an async request. The edit confirmation message is generated with:

templateManager.executeNoException("extension/handler/xar/securityLevelEditConfirmationChecker.vm");
...
$services.rendering.render($block, 'html/5.0')

The first line return a RawBlock wrapped in an XDOM block without any metadata. What happens is this:

  • when the request has outputSyntax=plain the syntax of the generated RawBlock is Plain 1.0 (starting with XWIKI-22738), which leads to an empty output when rendered with the HTML5 renderer
  • when the outputSyntax request parameter is missing (or if you don't have the changes from XWIKI-22738) the syntax of the generated RawBlock is HTML5 (matching the default output syntax I guess). This leads to the expected output when rendered with the HTML5 renderer

Note that the problem is not visible is you render the template like this:

{{template name="test.vm" /}}

It's visible only if you do:

{{groovy}}
templateManager = services.component.getInstance(org.xwiki.template.TemplateManager.class)
block = templateManager.executeNoException("test.vm")
println services.rendering.render(block, 'html/5.0')
{{/groovy}}

If you use something like this to request HTML async, then:

  • you can't simply use the get action, because the HTML is encoded
  • you can't add outputSyntax=plain because you lose the HTML

Your only option is to write the rendering output directly to the response body and to get the HTML with the get action without outputSyntax=plain.

Thomas Mortagne Simon Urli do we need to do something about this? Is this the expected behavior (after XWIKI-22738). Is there a better way to fix XWIKI-22738 without having this side effect?