From ecd1260017d23128f7b37289be901e0fbb888992 Mon Sep 17 00:00:00 2001
From: Yigit Sever
Date: Fri, 29 Oct 2021 08:07:01 +0000
Subject: Lowercase everything, Rosé Pine, click to copy
And probably other little things I forgot about
---
ui-stats.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
(limited to 'ui-stats.c')
diff --git a/ui-stats.c b/ui-stats.c
index 09b3625..8b7e70c 100644
--- a/ui-stats.c
+++ b/ui-stats.c
@@ -309,13 +309,13 @@ static void print_authors(struct string_list *authors, int top,
for (i = 1; i < period->count; i++)
period->dec(&tm);
- html("
Author | ");
+ html("author | ");
for (j = 0; j < period->count; j++) {
tmp = period->pretty(&tm);
htmlf("%s | ", tmp);
period->inc(&tm);
}
- html("Total |
\n");
+ html("total | \n");
if (top <= 0 || top > authors->nr)
top = authors->nr;
@@ -348,7 +348,7 @@ static void print_authors(struct string_list *authors, int top,
print_combined_authorrow(authors, top, authors->nr - 1,
"Others (%ld)", "left", "", "sum", period);
- print_combined_authorrow(authors, 0, authors->nr - 1, "Total",
+ print_combined_authorrow(authors, 0, authors->nr - 1, "total",
"total", "sum", "sum", period);
html("
");
}
@@ -393,14 +393,14 @@ void cgit_show_stats(void)
cgit_add_hidden_formfields(1, 0, "stats");
html(" |
");
if (ctx.repo->max_stats > 1) {
- html("Period: | ");
+ html("
period: | ");
html(" |
");
}
- html("Authors: | ");
+ html("
authors: | ");
html(" |
");
html("");
html("");
- htmlf("Commits per author per %s", period->name);
+ htmlf("commits per author per %s", period->name);
if (ctx.qry.path) {
html(" (path '");
html_txt(ctx.qry.path);
--
cgit v1.2.3-70-g09d2
---|