From: Stephen D. <sd...@us...> - 2005-07-21 10:43:25
|
Update of /cvsroot/naviserver/naviserver In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14639 Modified Files: ChangeLog Log Message: * tests/ns_adp_chunked.test: * tests/http_chunked.test: Rename tests which handle both Tcl and ADP. Add some more tests which highlight a few bugs. * tests/testserver/pages/ns_adp_chunked.tcl: * tests/testserver/pages/http_chunked.adp: Rename file. Handle streaming and non-streaming situations, and actually write out the data in two goes. Add a workaround for a bug in the ns_conn chunked switch: detect whether client is HTTP/1.1 and therefore handles chunked encoding. This needs to disappear altogether. * tests/testserver/pages/ns_tcl_chunked.tcl: Incorporate code directly into test file using ns_register_proc. Index: ChangeLog =================================================================== RCS file: /cvsroot/naviserver/naviserver/ChangeLog,v retrieving revision 1.168 retrieving revision 1.169 diff -C2 -d -r1.168 -r1.169 *** ChangeLog 20 Jul 2005 05:31:21 -0000 1.168 --- ChangeLog 21 Jul 2005 10:43:09 -0000 1.169 *************** *** 1,2 **** --- 1,18 ---- + 2005-07-21 Stephen Deasey <sd...@us...> + + * tests/ns_adp_chunked.test: + * tests/http_chunked.test: Rename tests which handle both Tcl and + ADP. Add some more tests which highlight a few bugs. + + * tests/testserver/pages/ns_adp_chunked.tcl: + * tests/testserver/pages/http_chunked.adp: Rename file. Handle + streaming and non-streaming situations, and actually write out the + data in two goes. Add a workaround for a bug in the ns_conn + chunked switch: detect whether client is HTTP/1.1 and therefore + handles chunked encoding. This needs to disappear altogether. + + * tests/testserver/pages/ns_tcl_chunked.tcl: Incorporate code + directly into test file using ns_register_proc. + 2005-07-19 Stephen Deasey <sd...@us...> |