Mercurial > p > roundup > code
diff cgi-bin/roundup.cgi @ 1181:49aebf5a8691
some speedups, some fixes to the benchmarking
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 23 Sep 2002 00:50:32 +0000 |
| parents | 26c8cb2162d7 |
| children | 347657425a10 |
line wrap: on
line diff
--- a/cgi-bin/roundup.cgi Fri Sep 20 23:20:57 2002 +0000 +++ b/cgi-bin/roundup.cgi Mon Sep 23 00:50:32 2002 +0000 @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: roundup.cgi,v 1.32 2002-09-16 22:37:26 richard Exp $ +# $Id: roundup.cgi,v 1.33 2002-09-23 00:50:32 richard Exp $ # python version check from roundup import version_check @@ -36,6 +36,9 @@ # "NAME=DIR<sep>NAME2=DIR2<sep>...", where <sep> is the directory path # separator (";" on Windows, ":" on Unix). +# Make sure the NAME part doesn't include any url-unsafe characters like +# spaces, as these confuse the cookie handling in browsers like IE. + # ROUNDUP_LOG is the name of the logfile; if it's empty or does not exist, # logging is turned off (unless you changed the default below).
