summaryrefslogtreecommitdiff
path: root/sfeed_frames.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2021-05-27 12:32:41 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2021-05-27 12:35:00 +0200
commit02b590f6a23ab775535ab96614eb467156e8abe6 (patch)
tree28531f4a2c73b8c46f1781b923620cd55a5df778 /sfeed_frames.c
parent1a90add12ed8ab5b8b2117fd4f079749865211e4 (diff)
sfeed_frames/sfeed_html: show the total counts and improve the title format
This title format now matches the one with sfeed_curses. It shows the count to the most left and makes it more readable imho. It also works better when the titlebar is small.
Diffstat (limited to 'sfeed_frames.c')
-rw-r--r--sfeed_frames.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sfeed_frames.c b/sfeed_frames.c
index f805e59..dc225d9 100644
--- a/sfeed_frames.c
+++ b/sfeed_frames.c
@@ -12,7 +12,7 @@ static struct feed *feeds;
static char *line;
static size_t linesize;
static time_t comparetime;
-static unsigned long totalnew;
+static unsigned long totalnew, total;
static void
printfeed(FILE *fpitems, FILE *fpin, struct feed *f)
@@ -54,6 +54,7 @@ printfeed(FILE *fpitems, FILE *fpin, struct feed *f)
fputs(" ", fpitems);
}
f->total++;
+ total++;
if (fields[FieldLink][0]) {
fputs("<a href=\"", fpitems);
@@ -159,9 +160,9 @@ main(int argc, char *argv[])
fputs("<!DOCTYPE html>\n<html>\n<head>\n"
"\t<meta name=\"referrer\" content=\"no-referrer\" />\n"
"\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n"
- "\t<title>Newsfeed (", fpindex);
- fprintf(fpindex, "%lu", totalnew);
- fputs(")</title>\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\" />\n"
+ "\t<title>(", fpindex);
+ fprintf(fpindex, "%lu/%lu", totalnew, total);
+ fputs(") - Newsfeed</title>\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\" />\n"
"</head>\n", fpindex);
if (showsidebar) {
fputs("<frameset framespacing=\"0\" cols=\"250,*\" frameborder=\"1\">\n"