Sorting the blog posts in newest-to-oldest order now works.
authorArt Cancro <ajc@uncensored.citadel.org>
Fri, 3 Jun 2011 17:43:28 +0000 (13:43 -0400)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 4 Sep 2011 20:56:53 +0000 (20:56 +0000)
Big thanks to whoever wrote
http://www.c.happycodings.com/Sorting_Searching/code14.html

webcit/blogview_renderer.c

index d6ddf9c2599e42f94b40e40b8cb33a9fff3ea5e6..83fcc19bdff239382bb5b50a420daa9854245045 100644 (file)
@@ -222,21 +222,18 @@ int blogview_LoadMsgFromServer(SharedMessageStatus *Stat,
 
 /*
  * Sort a list of 'struct blogpost' objects by newest-to-oldest msgnum.
+ * With big thanks to whoever wrote http://www.c.happycodings.com/Sorting_Searching/code14.html
  */
-int blogview_sortfunc(const void *s1, const void *s2) {
-       struct blogpost *l1 = (struct blogpost *)(s1);
-       struct blogpost *l2 = (struct blogpost *)(s2);
+static int blogview_sortfunc(const void *a, const void *b) { 
+       struct blogpost * const *one = a;
+       struct blogpost * const *two = b;
 
-       wc_printf("Sort function called on %d, %d<br>\n", l1->top_level_id, l2->top_level_id);
-       return(0);
-
-       if (l1->msgs[0] > l2->msgs[0]) return(-1);
-       if (l1->msgs[0] < l2->msgs[0]) return(+1);
+       if ( (*one)->msgs[0] > (*two)->msgs[0] ) return(-1);
+       if ( (*one)->msgs[0] < (*two)->msgs[0] ) return(+1);
        return(0);
 }
 
 
-
 /*
  * All blogpost entries are now in the hash list.
  * Sort them, (FIXME cull by date range if needed,) and render what we want to see.
@@ -270,10 +267,8 @@ int blogview_render(SharedMessageStatus *Stat, void **ViewSpecific, long oper)
        DeleteHashPos(&it);
 
        if (num_blogposts > 0) {
-               qsort(blogposts, num_blogposts, sizeof(struct blogpost *), blogview_sortfunc);
+               qsort(blogposts, num_blogposts, sizeof(void *), blogview_sortfunc);
                for (i=0; i<num_blogposts; ++i) {
-                       wc_printf("Top level ID is %d", blogposts[i]->top_level_id);
-                       wc_printf("; top level msgnum is %ld", blogposts[i]->msgs[0]);
                        blogpost_render(blogposts[i]);
                }
                free(blogposts);