view backend/couchdb/CouchApp/feedworm/views/feeds/map.js @ 210:e2c70c92da02

Automated merge with https://xanthippe.dyndns.org/hg/Feedworm
author Dirk Olmes <dirk@xanthippe.ping.de>
date Wed, 25 Jul 2012 08:00:43 +0200
parents a5bda54309ba
children
line wrap: on
line source

function(doc)
{
    if (doc.doctype == "feed")
    {
        emit(doc._id, doc)
    }
}