From 69ea054270bc43c00937015b78378de9dc649602 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sun, 26 Sep 2021 13:00:12 -0400 Subject: Use tiny UTF-8-aware col -b replacement OpenBSD col(1) doesn't understand UTF-8 and will delete all of it. Stupid, especially when mandoc(1) tells you to use it to remove man formatting. I shouldn't have to write something so trivial. --- www/text.causal.agency/.gitignore | 1 + www/text.causal.agency/Makefile | 6 +++--- www/text.causal.agency/colb.c | 16 ++++++++++++++++ 3 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 www/text.causal.agency/colb.c (limited to 'www') diff --git a/www/text.causal.agency/.gitignore b/www/text.causal.agency/.gitignore index 8fe3acc9..66b3e637 100644 --- a/www/text.causal.agency/.gitignore +++ b/www/text.causal.agency/.gitignore @@ -1,3 +1,4 @@ *.txt +colb feed.atom igp diff --git a/www/text.causal.agency/Makefile b/www/text.causal.agency/Makefile index be1a4f1b..cf0207ff 100644 --- a/www/text.causal.agency/Makefile +++ b/www/text.causal.agency/Makefile @@ -30,12 +30,12 @@ TXTS += 024-seprintf.txt TXTS += 025-v6-pwd.txt TXTS += 026-git-comment.txt -all: ${TXTS} +all: colb ${TXTS} .SUFFIXES: .7 .txt .7.txt: - mandoc -T utf8 $< | col -bx > $@ + mandoc -T utf8 $< | ./colb > $@ feed.atom: feed.sh ${TXTS} sh feed.sh > feed.atom @@ -43,7 +43,7 @@ feed.atom: feed.sh ${TXTS} clean: rm -f ${TXTS} feed.atom igp -install: ${TXTS} feed.atom +install: colb ${TXTS} feed.atom install -p -m 644 ${TXTS} feed.atom ${WEBROOT} install-igp: igp diff --git a/www/text.causal.agency/colb.c b/www/text.causal.agency/colb.c new file mode 100644 index 00000000..5faabc3a --- /dev/null +++ b/www/text.causal.agency/colb.c @@ -0,0 +1,16 @@ +#include +#include +#include +int main(void) { + setlocale(LC_CTYPE, "en_US.UTF-8"); + wint_t next, prev = WEOF; + while (WEOF != (next = getwchar())) { + if (next == L'\b') { + prev = WEOF; + } else { + if (prev != WEOF) putwchar(prev); + prev = next; + } + } + if (prev != WEOF) putwchar(prev); +} -- cgit 1.4.1 ad821f20&follow=1'>root/catsitd.8 (unfollow)
Commit message (Expand)Author
2020-08-17Truncate PID file after opening and lockingJune McEnroe
2020-08-17Simplify parseConfig error handlingJune McEnroe
2020-08-17Properly handle command line truncationJune McEnroe
2020-08-17Flesh out documentation and improve examplesJune McEnroe
2020-08-16Add drop commandJune McEnroe
2020-08-16Only call setgroups as rootJune McEnroe
2020-08-16Don't set LOGNAMEJune McEnroe
2020-08-16Add privileged servicesJune McEnroe
2020-08-16Clear groups list for servicesJune McEnroe
2020-08-16Use process groups for servicesJune McEnroe
2020-08-16Set title after reloadJune McEnroe
2020-08-15Set title on control commandsJune McEnroe
2020-08-15Add 126 to hardcoded stop exitsJune McEnroe
2020-08-15Remove EX_CONFIG from default stopexitsJune McEnroe
2020-08-15Avoid "control named pipe" phraseJune McEnroe
2020-08-15Check if pipe is writable in wrapperJune McEnroe
2020-08-15Parse config laterJune McEnroe
2020-08-15Only log signals other than SIGTERMJune McEnroe
2020-08-15Clarify restart interval in catsitd manualJune McEnroe
2020-08-15Fix resetting restart interval with explicit restartJune McEnroe
2020-08-15Add reset interval after which restart interval is resetJune McEnroe
2020-08-15Log when service name pattern doesn't matchJune McEnroe
2020-08-15Add FreeBSD rc scriptJune McEnroe
2020-08-15Call setproctitle with number of servicesJune McEnroe
2020-08-15Rename project to catsitJune McEnroe
2020-08-15Use only LOG_NOTICE and LOG_WARNINGJune McEnroe
2020-08-15Make log messages consistentJune McEnroe
2020-08-15Remove closelog callJune McEnroe
2020-08-15Implement service statusJune McEnroe
2020-08-15Parse control commandsJune McEnroe
2020-08-15Read service pipesJune McEnroe
2020-08-15Implement non-blocking line-buffered readingJune McEnroe
2020-08-15Generate tags fileJune McEnroe
2020-08-15Just use CLOCK_MONOTONIC and clean up includesJune McEnroe
2020-08-15Reap childrenJune McEnroe
2020-08-14Implement serviceSignal, serviceStop, serviceRestartJune McEnroe
2020-08-14Reset restartInterval and restartDeadline on startJune McEnroe
2020-08-14Switch to timespec for timeoutsJune McEnroe
2020-08-14Implement serviceStartJune McEnroe
2020-08-14Flesh out Service structJune McEnroe
2020-08-14Build environment for servicesJune McEnroe
2020-08-14Implement spawntab parsingJune McEnroe
2020-08-14Open syslog, daemonize, write PIDJune McEnroe
2020-08-14Implement user and group lookupJune McEnroe
2020-08-14Add install targetJune McEnroe
2020-08-14Add spawnd skeletonJune McEnroe