From: Stephen D. <sd...@us...> - 2005-06-08 16:07:33
|
Update of /cvsroot/naviserver/naviserver In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20832 Modified Files: ChangeLog Makefile Added Files: NEWS Log Message: Add latest news. --- NEW FILE: NEWS --- ================= NaviServer 4.99.0 ================= New Features: * Byte code for Tcl pages are cached if nscache module present * Add support for mass virtual hosting #1159471 * ns_uuencode et all now do full base64 encoding * New introspection commands for procs, filters and traces * C and Tcl API for HTTP cookies #1145957 * Add -bytes option to ns_conncptofp command * New command ns_conn channel #1156141 * Add new wtchdog feature to restart the server if it crashes * Add ns_sha1 cryptographic hash command * C and Tcl API for setting response code of current connection * ns_accesslog can change configuration at runtime * New C and Tcl API for parsing command options and arguments * Server can now run as root if instructed to * Add new command ns_atstartup * New routines for listening on UDP and UNIX domain sockets * Add -localhost -localport options to ns_sockopen Bug Fixes: * Add locking to non multi-thread safe timegm() * Fix infinite loop in DNS routines * Call comm drivers DriverClose command when socket is released * Fix crash bug in nslog on NULL rollfmt * Fix URL decoding of '+' characters #1145277 * Report correct MIME type for xml documents #1145927 * Fix crash in channel detach code #1143586 * Make ns_sendmail handle dropped connections * Fix crash on startup when resolving localhost * Preserve nsdb exception messages generated by driver Code Changes: * Remove GNU implementations of getopt and poll * Cleanup up autoconf and use autoheader * Clean up test harness and add lots of tests * New Tcl callback infrastructure #1162223 * New convenience functions for handling Tcl object types * New function Ns_TclPrintfResult() for formatting Tcl results * No more support for defunct AOLpress * Remove support for old connid argument in much code #1156107 * Modules nspd and nsext moved from core to external modules * Objectified TclX keyed lists Index: Makefile =================================================================== RCS file: /cvsroot/naviserver/naviserver/Makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile 4 Jun 2005 15:24:28 -0000 1.9 --- Makefile 8 Jun 2005 16:07:24 -0000 1.10 *************** *** 37,41 **** distfiles = $(dirs) doc tcl include tests win32 *.tcl *.m4 \ ! configure Makefile install-sh README ChangeLog license.terms all: --- 37,41 ---- distfiles = $(dirs) doc tcl include tests win32 *.tcl *.m4 \ ! configure Makefile install-sh README ChangeLog NEWS license.terms all: Index: ChangeLog =================================================================== RCS file: /cvsroot/naviserver/naviserver/ChangeLog,v retrieving revision 1.85 retrieving revision 1.86 diff -C2 -d -r1.85 -r1.86 *** ChangeLog 4 Jun 2005 15:24:28 -0000 1.85 --- ChangeLog 8 Jun 2005 16:07:16 -0000 1.86 *************** *** 1,2 **** --- 1,7 ---- + 2005-06-08 Stephen Deasey <sd...@us...> + + * Makefile: + * NEWS: Add latest news. + 2005-06-04 Stephen Deasey <sd...@us...> |