view backend/couchdb/CouchApp/feedworm/views/feeds/map.js @ 231:16fa9f090c36

hard-code python2
author Dirk Olmes <dirk@xanthippe.ping.de>
date Thu, 25 Sep 2014 08:06:51 +0200
parents a5bda54309ba
children
line wrap: on
line source

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