1. Retrievals should be much faster and put much less load on hub, particularly for complex searches. 2. URLs for messages are no longer query dependent, so when a message you have already looked at pops up in a different search, you your browser history mechanism can recognize it and color the link appropriately. 3. Messages are potentially cachable; I may have to tweak the HTTP header to make it really work though.
15 lines
411 B
Makefile
15 lines
411 B
Makefile
# $Id: Makefile,v 1.10 1998-02-26 23:49:47 jfieber Exp $
|
|
|
|
DATA= ftp.mirrors
|
|
CGI= ftp.cgi gallery.cgi mirror.cgi cgi-lib.pl cgi-style.pl
|
|
CGI+= search.cgi cvsweb.cgi query-pr.cgi query-pr-summary.cgi
|
|
CGI+= dosendpr.cgi freebsd.def html.pl reg.cgi missing_handler.cgi
|
|
CGI+= ports.cgi pds.cgi man.cgi url.cgi getmsg.cgi
|
|
|
|
.SUFFIXES: .C .cgi
|
|
|
|
.C.cgi:
|
|
${CXX} ${CFLAGS} -o ${.TARGET} ${.IMPSRC}
|
|
|
|
.include "../web.mk"
|
|
|