* @param entry the BlogEntry to adapt
* @return a Hashtable representing the major properties of the entry
*/
private Hashtable adaptBlogEntry(BlogEntry entry) {
// first apply decorators - we don't want to go out naked :-)
ContentDecoratorContext context = new ContentDecoratorContext();
context.setView(ContentDecoratorContext.DETAIL_VIEW);
context.setMedia(ContentDecoratorContext.XML_RPC);
entry.getBlog().getContentDecoratorChain().decorate(context, entry);
Hashtable post = new Hashtable();
post.put(TITLE, entry.getTitle());
post.put(SUBTITLE, entry.getSubtitle());