ref: 3513992348db165163f78094a7c955a672273cac
parent: d9453c56be4c6077460ce657832a58992e94306c
author: uriel <uriel@suckless.org>
date: Sat Jul 5 00:55:56 EDT 2008
Move .txt handling belog site-wide .tpl's which was allowing the .txt sitemaps to shadow the html version
--- a/bin/controller.rc
+++ b/bin/controller.rc
@@ -102,13 +102,6 @@
}
if not if (test -f $body.tpl)
template.awk $body.tpl | rc $rcargs
- if not if (test -f $body.txt) {
- echo '<pre>'
- # XXX Insering a blank line between lines in input is good for fortunes.txt, but probably not for other .txt files
- # XXX Words are not broken, even if they are way beyond 82 chars long
- cat $body.txt |sed 's/$/\n/g; s/</\>/g; s/>/\</g' |fmt -l 82 -j
- echo '</pre>'
- }
if not if (test -f $body.html)
cat $body.html | /bin/sed '0,/<[Bb][Oo][Dd][Yy][^>]*>/d; /<\/[Bb][Oo][Dd][Yy]>/,$d'
if not if (~ $body *.html && test -f $body)
@@ -117,6 +110,13 @@
blogDirs = `{basename -d $body}
if not if (test -f pub/^$reqpath^.tpl)
template.awk pub/^$reqpath^.tpl | rc $rcargs
+ if not if (test -f $body.txt) {
+ echo '<pre>'
+ # XXX Insering a blank line between lines in input is good for fortunes.txt, but probably not for other .txt files
+ # XXX Words are not broken, even if they are way beyond 82 chars long
+ cat $body.txt |sed 's/$/\n/g; s/</\>/g; s/>/\</g' |fmt -l 82 -j
+ echo '</pre>'
+ }
if not if(~ $body */index && ~ $#blogDirs 0) {
echo '<h1 style="text-transform: capitalize;">' `{basename -d $body|sed -e 's,.*//,,g' -e 's,/$,,' -e 's,/, / ,g' } '</h1>'
echo '<ul style="text-transform: capitalize;">'