summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 48ae3f9)
raw | patch | inline | side by side (parent: 48ae3f9)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 22 Nov 2001 00:25:11 +0000 (00:25 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 22 Nov 2001 00:25:11 +0000 (00:25 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@414 57a73879-2fb5-44c3-a270-3262357dd7e2
cgi-bin/roundup.cgi | patch | blob | history | |
doc/announcement.txt | patch | blob | history |
diff --git a/cgi-bin/roundup.cgi b/cgi-bin/roundup.cgi
index 65c9436864ea0c8064dd97718b623c13f328ed00..e755c08bab4854d88e1495a0a8977a88a5feebde 100755 (executable)
--- a/cgi-bin/roundup.cgi
+++ b/cgi-bin/roundup.cgi
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: roundup.cgi,v 1.18 2001-11-06 22:10:11 jhermann Exp $
+# $Id: roundup.cgi,v 1.19 2001-11-22 00:25:10 richard Exp $
# python version check
import sys
request.send_response(200)
request.send_header('Content-Type', 'text/html')
request.end_headers()
- w = request.wfile.write
+ w = request.write
w('<html><head><title>Roundup instances index</title></head>\n')
w('<body><h1>Roundup instances index</h1><ol>\n')
homes = ROUNDUP_INSTANCE_HOMES.keys()
#
out, err = sys.stdout, sys.stderr
try:
+ # force input/output to binary (important for file up/downloads)
+ if sys.platform == "win32":
+ import os, msvcrt
+ msvcrt.setmode(sys.stdin.fileno(), os.O_BINARY)
+ msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
checkconfig()
sys.stdout = sys.stderr = LOG
main(out, err)
#
# $Log: not supported by cvs2svn $
+# Revision 1.18 2001/11/06 22:10:11 jhermann
+# Added env config; fixed request wrapper & index list; sort list by key
+#
# Revision 1.17 2001/11/06 21:51:19 richard
# Fixed HTTP headers for top-level index in CGI script
#
diff --git a/doc/announcement.txt b/doc/announcement.txt
index d2e92b9a5f838407da44d2f625bf8ce289369e0a..f1ca352e1275dd8ebb720d422362eb007707e593 100644 (file)
--- a/doc/announcement.txt
+++ b/doc/announcement.txt
Roundup 0.3.0 - an issue tracking system
This release contains several new features which will require migration, so
-we're releasing this preview for the bleeding-edge users.
+please read MIGRATION.txt!
Big stuff in this release:
- lots of bug fixes, thanks to all users for their great feedback!