From 157de989780386c113c839d2fc3ea991a6604707 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Thu, 25 Jul 2019 23:05:41 -0400 Subject: Generate index.html with links from bin.7 --- bin/Makefile | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'bin') diff --git a/bin/Makefile b/bin/Makefile index b246bf28..0e44f557 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -114,11 +114,7 @@ IGNORE = '*.o' '*.html' config.mk tags scheme.h scheme.png $(BINS_ALL) $(LINKS) echo $(IGNORE) | tr ' ' '\n' | sort > .gitignore HTMLS = $(BINS_ALL:%=%.html) -HTMLS += Makefile.html -HTMLS += gfx-fb.html -HTMLS += gfx-x11.html -HTMLS += gfx.html -HTMLS += html.html +HTMLS += index.html HTMLS += png.html WEBROOT = /usr/local/www/causal.agency @@ -141,8 +137,10 @@ $(HTMLS): ttpre hi html.sh .h.html: sh html.sh $< > $@ -Makefile.html: Makefile bin.7 - sh html.sh Makefile bin.7 > Makefile.html +index.html: Makefile bin.7 + sh html.sh Makefile bin.7 \ + | sed -E -e 's#([a-z0-9-]+)[(]1[)]#&#' \ + > index.html clean: rm -f $(BINS_ALL) $(LINKS) tags scheme.h scheme.png *.o *.html -- cgit 1.4.1 ss='tabs'> summary refs log tree commit diff
path: root/ui.c (unfollow)
Commit message (Collapse)Author
2018-09-13Avoid uninitialized x in uiReadJune McEnroe
2018-09-13Add IRCDefault to colors enumJune McEnroe
2018-09-13Return a format->split even at the end of the stringJune McEnroe
2018-09-13Fix weird tab-complete after commaJune McEnroe
I have no idea why I did this.
2018-09-13Rewrite UI againJune McEnroe
The persistent topic is gone and the status line is now at the top. The status formatting still needs to be reworked. I also want to try showing the nick in the input window so it really looks like your next message.
2018-09-12Add note about C-oJune McEnroe
Why are there so few well usable ctrl key bindings?
2018-09-12Use formatParse split to position input cursorJune McEnroe
2018-09-12Factor out IRC formatting parsingJune McEnroe
2018-09-11Add /help equivalent to /manJune McEnroe
2018-09-11Don't render every PM as a pingJune McEnroe
2018-09-11Add urlOpenMatchJune McEnroe
2018-09-10Depend on man.sh for chroot.tar targetJune McEnroe
2018-09-10Set LESSSECURE=1 in man.shJune McEnroe
Ridiculous.
2018-09-10Add /man commandJune McEnroe
2018-09-10Install man page in chrootJune McEnroe
2018-09-10Install man pageJune McEnroe
2018-09-10Split keys into subsections and document colorsJune McEnroe
2018-09-10Add "blank" lines to chatte.1June McEnroe
2018-09-10Document key bindings in chatte.1June McEnroe
2018-09-08Document slash commands in chatte.1June McEnroe