function view_recent_entries(res) {
    var listtable = {
        'http://wowbokai.wordpress.com/feed/': '#wowblog',
        'http://feeds.feedburner.com/elementary': '#e8yblog'
    };
    var listid = listtable[ res.query.diagnostics.url.content ];
    var entries = res.query.results.item;
    if (!listid || !entries) return;
    var list = $('<ul />');
    $(listid).append(list);
    $(entries).each(function(i, v) {
        v.pubDate = v.pubDate.replace(/[0-9]{2}:.*/, '');
        list.append('<li>' + v.pubDate + ' - <a href="' + v.link + '">' + v.title + '</a></li>');
    });
}

