Tcl Library Source Code

Artifact [7f6e9f87be]
Login

Artifact 7f6e9f87be027771ce6acc87478d60a7582af9fb:


2002-01-15  Andreas Kupries  <[email protected]>

	* Bumped version to 1.2.1

2001-10-20  Andreas Kupries  <[email protected]>

	* ncgi.tcl (ncgi::redirect): Fixed bug #464560 reported by Ed
	  Rolfe <[email protected]>. The proposed fix is not
	  used as it does not pass the testsuite. We check for the
	  existence of "env(REQUEST_URI)" instead, again, and use the
	  appropriate alternate information if it does not exist.

2001-10-16  Andreas Kupries  <[email protected]>

	* ncgi.n:
	* ncgi.test:
	* ncgi.tcl:
	* pkgIndex.tcl: Version up to 1.2

2001-09-05  Andreas Kupries  <[email protected]>

	* ncgi.tcl: Restricted export list to public API.
	  [456255]. Patch by Hemang Lavana
	  <[email protected]>

2001-09-05  Andreas Kupries  <[email protected]>

	* ncgi.tcl: Added missing [global env]. Bug [458023].

2001-08-01  Jeff Hobbs  <[email protected]>

	* ncgi.tcl: made require Tcl 8.1+, sped up encode and decode.

2001-07-10  Andreas Kupries <[email protected]>

	* ncgi.tcl: Frink 2.2 run, fixed dubious code.

2001-06-21  Andreas Kupries <[email protected]>

	* ncgi.tcl: Fixed dubious code reported by frink.

2001-06-15  Melissa Chawla <[email protected]>

	* ncgi.tcl: Applied George Wu's patch ([email protected]) to the
 	multipart function.  It failed to process binary data correctly
 	because it replaced all "\r\n" sequences with "\n".

2000-07-31  Brent Welch <[email protected]>

	* ncgi.tcl:  Added ncgi::setValue, ncgi::setValueList,
	ncgi::setDefaultValue, ncgi::setDefaultValueList to push values
	back into the CGI environment.

2000-05-26  Melissa Chawla  <[email protected]>

	* ncgi.tcl: fixed bug 5727 where Netscape prepends an extra \n to
	post data sent via HTTPS.  Urlencoded post does not include
	preceding or trailing whitespace, so to be safe, we trim
	whitespace off the post data before parsing the attributes.

2000-05-15  Brent Welch <[email protected]>

	* ncgi.tcl:  Changed ncgi::redirect so it grabs the server name
	from REQUEST_URI before using the SERVER_NAME value.  This is so
	the server name matches the previous page better.  Otherwise a
	transition from "www" to "www.scriptics.com" can trigger
	Basic Authentication challenges.

2000-05-02  Brent Welch <[email protected]>

	* ncgi/ncgi.tcl:
	Moved the '+' decoding from nvlist down into ncgi::decode.
	Changed ncgi::value to strip out the structure associated with
	multipart/form-data values.  Use ncgi::valueList to get the
	structured value.

2000-05-02  Sandeep Tamhankar <[email protected]>

	* ncgi.tcl: Changed ncgi::parseMimeValue such that a key-value
	pair like name="" would turn into the list {name {}} instead of
	{name {""}}.
	
2000-04-26  Brent Welch <[email protected]>

	* ncgi.tcl, ncgi.test: changed names to get capitalization
	right: setCookie, valueList, importAll, urlStub

2000-04-17  Brent Welch  <[email protected]>

	* ncgi.tcl: Fixed ncgi::reset with no query data.  Fixed
	ncgi::multipart because it usually gets \r\n data.

2000-04-14  Brent Welch <[email protected]>
	
	* ncgi.tcl: Changed ncgi::list to ncgi::nvlist (for "name value
	list") becauase	of the inevitable conflict with the global list
	command.  Added ncgi::importall to import a set of cgi variables.
	Added multipart/form-data parsing.  Added ncgi::cookie and
	ncgi::setcookie.

2000-03-20  Eric Melski  <[email protected]>

	* ncgi.test: Fixed tests that created files with "source ncgi.tcl"
	in them to use full path for sourcing, so that tests could be run
	from any directory. [Bug: 4393]

2000-03-15  Brent Welch <[email protected]>

	* ncgi.tcl: added ncgi::reset so the ncgi package can be used inside
	TclHttpd

	* ncgi.test: added ncgi::reset tests, renumbered everything, and
	switch most tests to use ncgi::reset

2000-03-10  Eric Melski  <[email protected]>

	* pkgIndex.tcl: Added package index file.

	* ncgi.test: Added code to add source dir to auto_path, so that 
	tests could be run on uninstalled package.  Added call to 
	tcltest::cleanupTests.