One other option is to use the archie cgi prgram on yopur http server.
Here is the code
-----
#!/bin/sh
ARCHIE=/usr/local/bin/archie
echo Content-type: text/html
echo
if [ -x $ARCHIE ]; then
if [ $# = 0 ]; then
cat << EOM
<TITLE>Archie Gateway</TITLE>
<H1>Archie Gateway</H1>
<ISINDEX>
This is a gateway to archie. Type search query in your browser's search
dialog.<P>
EOM
else
echo \<PRE\>
$ARCHIE "$*"
fi
else
echo Cannot find archie on this system.
fi
------
I have it running on http://www.pona.com/search.html
I am thinking about affecting the output to take the archie output and
form URLs for using www to browse the FTP sites.
------
Later,
ZOT zot @
crl .
com
Home Page: http://www.crl.com/~zot/home.html
Improv Page: http://www.crl.com/~zot/improv.html
Follow-Ups:
|
|