summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--scooper.12
-rw-r--r--server.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/scooper.1 b/scooper.1
index 88f1110..e17e8bd 100644
--- a/scooper.1
+++ b/scooper.1
@@ -38,7 +38,7 @@ and exit.
 .It Fl l Ar limit
 Limit the number of events
 to be displayed on one page.
-The default limit is 100.
+The default limit is 50.
 .
 .It Fl p
 Show only public contexts,
diff --git a/server.c b/server.c
index bed5d95..6ecd921 100644
--- a/server.c
+++ b/server.c
@@ -46,7 +46,7 @@ const struct kvalid Keys[KeysLen] = {
 };
 
 bool pagePublic;
-int pageLimit = 100;
+int pageLimit = 50;
 int pageRecent = 500;
 
 static const char CSS[] = {
span>Ignore about-filterJune McEnroe 2019-12-19Fix matching make tags with no sourcesJune McEnroe 2019-12-19Avoid matching := assignments as tagsJune McEnroe 2019-12-18Hide line numbers when rendering mdocJune McEnroe Hack: output an extra <td> after rendering mdoc so that line numbers can be hidden based on there being three. This required splitting source-filter and about-filter since on about pages there is no table. 2019-12-18Customize cgit CSSJune McEnroe 2019-12-18Use :target rather than :focus pseudo-classJune McEnroe :target persists after you click on something else. 2019-12-18Copy cgit auxiliary binaries properlyJune McEnroe 2019-12-18Add git.causal.agency cgit configJune McEnroe 2019-12-18Bail from hi if input is binaryJune McEnroe NULs in the input cause an infinite loop in htmlEscape, not to mention regexes obviously not working, etc. 2019-12-16Post "cgit setup"June McEnroe