The {rss} macro is still not usable as per #XWIKI-283. It's a trivial fix! (You can see from code inspection it is dumping a Java object to the web page.) Here's the patch, updated for 10b1: core/src/main/java/com/xpn/xwiki/render/macro/rss/RSSMacro.java @@ -181,7 +181,7 @@ if (paramObj.isFull() && entry.getDescription() != null) { buf.append(NEWLINE).append("{quote}") - .append(NEWLINE).append(entry.getDescription()) + .append(NEWLINE).append(entry.getDescription().getValue()) .append(NEWLINE).append("{quote}"); } } @@ -214,7 +214,7 @@ if (paramObj.isFull() && entry.getDescription() != null) { buf.append(NEWLINE).append("<div class='rssitemdescription'>") - .append(NEWLINE).append(entry.getDescription()) + .append(NEWLINE).append(entry.getDescription().getValue()) -- Trevor Cox skahasoftware.com Vancouver, Canada