Probably PR problems on http://platform.xwiki.org actually

Hello,

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

Here some pages:

Thxs.

Pascal B

Thanks Pascal. I’m curious: how did you land on those pages? :slight_smile: (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.

Maybe http://www.xwiki.org/xwiki/bin/view/Documentation/DevGuide/Architecture/URL%20Architecture/Standard%20URL%20Format/#HParameter:xpage or http://www.xwiki.org/xwiki/bin/view/Documentation/DevGuide/Architecture/URL%20Architecture/Standard%20URL%20Format/#HParameter:outputSyntaxandoutputSyntaxVersion would help you :slight_smile:

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}}

(hum sorry I’m not on right forum section)