如何在汇合宏中呈现所有页面的子内容

时间:2015-02-10 08:04:36

标签: java confluence atlassian-plugin-sdk

我正在尝试构建一个简单的confluence宏,它呈现当前父级的所有子页面。基本上是现有宏之间的交叉:子显示和包含页面。我确实看了source code这些宏,但由于这是我第一次在汇合中进行开发,所以它更容易混淆而不是有用。

现在我正在研究执行方法,因为我是汇合开发的新手,所以我不确定100%究竟需要去那里。

我已阅读Atlassian's Guide to Making a new Confluence Macro 但似乎他们只是使用html来包装现有宏的属性列表。

所以我决定查看API,特别是Page 我能够非常接近,问题是,当我复制页面的主体时,我没有得到他们页面中的孩子们的宏和样式。

    @Override
    public String execute(Map<String, String> parameters, String body,
            ConversionContext context) throws MacroExecutionException {
        //loop through each child page and get its content
        StringBuilder sb = new StringBuilder();
        ContentEntityObject ceo = context.getPageContext().getEntity();
        Page parent =(Page) ceo ;
        List<Page> children = parent.getChildren();

        for(Page child:children)

        {
          sb.append(child.getBodyAsString());
        }

        return sb.toString();
    }

如何获得所有这些不仅仅是文本?

我也用java标记这个,因为这就是插件的编写方式。

1 个答案:

答案 0 :(得分:5)

我们走了,我想通了。

我需要将它从存储格式转换为视图格式,以便渲染宏。

{

  String converted = xhtmlUtils.convertStorageToView(child.getBodyAsString(), context);
  sb.append(converted);

}
如果您按照教程

xhtmlUtils在构造函数中初始化

private final XhtmlContent xhtmlUtils;

public ExampleMacro(XhtmlContent xhtmlUtils) 
{
    this.xhtmlUtils = xhtmlUtils;   
}

我还根据Atlassian answers

的建议添加了注释
@RequiresFormat(Format.Storage)
public String execute(Map<String, String> params, String body, ConversionContext conversionContext) throws MacroExecutionException {

其中Format和RequiresFormat是这些类/注释

import com.atlassian.confluence.content.render.xhtml.macro.annotation.Format;
import com.atlassian.confluence.content.render.xhtml.macro.annotation.RequiresFormat