I noticed this feature was an item on the http://www.list.org/todo.html page.
I ALMOST have this working as an extra script except, except for the way the HTML code is formatted by the builtin pipermail messes up my script. Where can I change how the code is generated? I basically wish for the code that creates thread.html to produce the closing </A> on the same line as the opening <A. (It does the same unnecessary line braking with italics too, but stripping those out does no harm) Currently it puts it on a different line and makes it difficult to reorder the contents of the file. Here is my Nasty Bash script. It creates a revthread.html from each thread.html. #!/bin/bash BD=/var/lib/mailman/archives/public/inhouse cd $BD for FILE in `cat index.html |grep thread.html |cut -d\" -f2` ; do FILELEN=` cat $BD/$FILE |wc -l` MONTH=`echo $FILE |cut -d/ -f1` echo $FILE echo $MONTH echo $FILELEN tail -n 22 $BD/$FILE > $BD/$MONTH/tail.html head -n 25 $BD/$FILE > $BD/$MONTH/head.html cat $BD/$FILE | head -n ` echo $(($FILELEN - 22))` | tail -n ` echo $(($FILELEN - 47))` > $BD/$MONTH/middl$ cat $BD/$MONTH/head.html > $BD/$MONTH/revthread.html tac $BD/$MONTH/middle.html >>$BD/$MONTH/revthread.html cat $BD/$MONTH/tail.html >>$BD/$MONTH/revthread.html done The only other howto for this task is at: http://www.mail-archive.com/[email protected]/msg00629.html -- /* Jason Philbrook | Midcoast Internet Solutions - Internet Access, KB1IOJ | Hosting, and TCP-IP Networks for Midcoast Maine http://f64.nu/ | http://www.midcoast.com/ */ ------------------------------------------------------ Mailman-Users mailing list [EMAIL PROTECTED] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
