Readloop remove special cases
[citadel.git] / webcit / bbsview_renderer.c
index 03d70ef2bd44accfea1a6f4ecbcc372a6179fca6..8bed3af37ddae02e57728da12e16119607de7b82 100644 (file)
@@ -27,7 +27,7 @@
 
 #include "webcit.h"
 #include "webserver.h"
-#include "groupdav.h"
+#include "dav.h"
 
 /*
  * Data which gets passed around between the various functions in this module
@@ -81,7 +81,9 @@ int bbsview_GetParamsGetServerCall(SharedMessageStatus *Stat,
                                   void **ViewSpecific, 
                                   long oper, 
                                   char *cmd, 
-                                  long len)
+                                  long len,
+                                  char *filter,
+                                  long flen)
 {
        struct bbsview *BBS = malloc(sizeof(struct bbsview));
        memset(BBS, 0, sizeof(struct bbsview));
@@ -345,7 +347,10 @@ int bbsview_RenderView_or_Tail(SharedMessageStatus *Stat,
                                        else {
                                                wc_printf("<a href=\"readfwd?go=");
                                                urlescputs(ChrPtr(WC->CurRoom.name));
-                                               wc_printf("?page=%d\">", i);
+                                               wc_printf("?start_reading_at=%ld\">",
+                                                       BBS->msgs[i*Stat->maxmsgs]
+                                               );
+                                               /* wc_printf("?page=%d\">", i); */
                                                wc_printf("<span class=\"moreprompt_link\">");
                                        }
                                        if (
@@ -414,6 +419,7 @@ InitModule_BBSVIEWRENDERERS
                VIEW_BBS,
                bbsview_GetParamsGetServerCall,
                NULL,
+               NULL,
                NULL, 
                bbsview_LoadMsgFromServer,
                bbsview_RenderView_or_Tail,