Never miss an old file
[myops.git] / web / query / views / post-page / map.js
1 function(doc) {
2   // todo make commonjs
3   // !code helpers/md5.js
4   
5   if (doc.type == "post") {
6     emit([doc._id], doc);
7   } else if (doc.type == "comment") {
8     if (doc.commenter && doc.commenter.email && !doc.commenter.gravatar_url) {
9       doc.commenter.gravatar = hex_md5(doc.commenter.email);      
10     }
11     emit([doc.post_id, doc.created_at], doc);
12   }
13 };