public void populateItem(Item item, Element eItem, int index) {
super.populateItem(item,eItem, index);
Element eDescription = eItem.getChild("description",getFeedNamespace());
if (eDescription != null) eDescription.removeAttribute("type");
String author = item.getAuthor();
if (author != null) {
eItem.addContent(generateSimpleElement("author", author));
}