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
Diffstat (limited to '')
-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[] = {
an>Set bot mode on downgradeJune McEnroe 2021-09-15Enter capsicum in downgradeJune McEnroe 2021-09-15Factor out common parts of downgrade messagesJune McEnroe 2021-09-14Add downgrade IRC botJune McEnroe 2021-09-14Sort by title if authors matchJune McEnroe 2021-09-13Swap-remove tags as they're foundJune McEnroe 2021-09-12Replace htagml regex with strncmpJune McEnroe 2021-09-11Also defer printing comment for lone close-parensJune McEnroe 2021-09-10Publish "git-comment"June McEnroe 2021-09-10Add git comment --pretty optionJune McEnroe 2021-09-08Defer printing comment if line is blank or closing braceJune McEnroe 2021-09-08Up default min-repeat to 30 linesJune McEnroe 2021-09-08Handle dirty lines in git-commentJune McEnroe 2021-09-08Document and install git-commentJune McEnroe 2021-09-08Add repeat and all options to git-commentJune McEnroe 2021-09-08Add group threshold to git-commentJune McEnroe