summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-07-11 22:29:34 -0400
committerJune McEnroe <june@causal.agency>2020-07-11 22:29:34 -0400
commit826dc506a982829ea3105c7b36f439a33eea3951 (patch)
tree0627478dd5fa45d20b7b687e240124db8c8642ca
parentAdd date jump form to events page (diff)
downloadscooper-826dc506a982829ea3105c7b36f439a33eea3951.tar.gz
scooper-826dc506a982829ea3105c7b36f439a33eea3951.zip
Lower default limit to 50
-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[] = {
4 -0500'>2021-01-19Add mtags to generate tags for make and mdocJune McEnroe 2021-01-19Map tags to IDs using only [[:alnum:]-._]June McEnroe 2021-01-19Don't use a pager if reading standard inputJune McEnroe 2021-01-19Support BSD make syntax and match *.amJune McEnroe These don't really go together, but... 2021-01-19Match tab following escaped newline in make assignmentsJune McEnroe Otherwise it ends up going into Shell state. 2021-01-18Allow matching lexers using first input lineJune McEnroe