FYI, there are some error messages on : http://platform.xwiki.org
like Failed to execute the [velocity] macro. Cause: [The execution of the [velocity] script macro is not allowed. Check the rights of its last author or the parameters if it's rendered from another script.]. Click on this message for details. text
Thanks Pascal. I’m curious: how did you land on those pages? (want to check if we need to fix some links now that we’ve moved platform to the main wiki).
… from a request on https://duckduckgo.com about xwiki getRenderedContent stuff: I try to found a way to get rendered content from a doc with http request parameter.
ty but nope I have a page with request parameter like:
bin/view/Main/WebRss?xpage=plain&outputSyntax=plain&space=xxx&space=yyyy
and I want the rendered content in a velocity variable:
{{velocity}}
#set($MyDocName = 'Main.WebRss') #I can not add "xpage=plain&outputSyntax=plain&space=xxx&space=yyyy parameter"
#set($MyDoc = $xwiki.getDocument($MyDocName))
#set($MyVar=$MyDoc.getRenderedContent())
{{/velocity}}