# ------------------------------------------------------------- # Author: Dean Stringer (deeknow @ pobox.com) # # Calls a perl script to fetch usenet posts from a local # NNTP server, and creates an index of the posts which is # then rendered from XML to HTML using sablotron # ------------------------------------------------------------- for grp in alt.internet.search-engines alt.www.webmaster comp.infosystems.www.servers.unix \ comp.lang.perl.misc comp.text.xml mailing.database.mysql php.general; do echo $grp # Fetch new articles for each group perl ./NNTP.pl -g $grp -n 100 -o xml > posts/$grp/index.xml # Transform report from XML to HTML sabcmd NNTP.xsl posts/$grp/index.xml posts/$grp/index.html done