added some comments for things I need to add
authorArt Cancro <ajc@uncensored.citadel.org>
Fri, 3 Jun 2011 18:12:17 +0000 (14:12 -0400)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 4 Sep 2011 20:57:07 +0000 (20:57 +0000)
webcit/blogview_renderer.c

index 83fcc19bdff239382bb5b50a420daa9854245045..4b286eb5db515f66e205da384e1f130d488058d0 100644 (file)
@@ -268,6 +268,9 @@ int blogview_render(SharedMessageStatus *Stat, void **ViewSpecific, long oper)
 
        if (num_blogposts > 0) {
                qsort(blogposts, num_blogposts, sizeof(void *), blogview_sortfunc);
+
+               /* FIXME this is where we handle date ranges etc */
+
                for (i=0; i<num_blogposts; ++i) {
                        blogpost_render(blogposts[i]);
                }
@@ -288,6 +291,7 @@ int blogview_Cleanup(void **ViewSpecific)
        return 0;
 }
 
+
 void 
 InitModule_BLOGVIEWRENDERERS
 (void)