summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5c5d83f)
raw | patch | inline | side by side (parent: 5c5d83f)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 6 Nov 2001 21:51:19 +0000 (21:51 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 6 Nov 2001 21:51:19 +0000 (21:51 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@367 57a73879-2fb5-44c3-a270-3262357dd7e2
MIGRATION.txt | patch | blob | history | |
cgi-bin/roundup.cgi | patch | blob | history |
diff --git a/MIGRATION.txt b/MIGRATION.txt
index 19ed5bde8364ab873f624751e6ffd3b59994d06d..3c9ead1c47ad2cd45c29b92587f560763b4e3f91 100644 (file)
--- a/MIGRATION.txt
+++ b/MIGRATION.txt
to send nosy messages to the author. Default behaviour is to not send nosy
messages to the author.
+
+CGI script roundup.cgi
+----------------------
+There have been some structural changes to the roundup.cgi script - you will
+need to install it again from the cgi-bin directory of the source
+distribution. Make sure you update the ROUNDUP_INSTANCE_HOMES after the
+copy.
+
diff --git a/cgi-bin/roundup.cgi b/cgi-bin/roundup.cgi
index ad92274b4a170903e0d88b95d689e7f65d296748..7e38c42d38433e00b74442ccf44fe39d48f9f837 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.16 2001-11-01 22:04:37 richard Exp $
+# $Id: roundup.cgi,v 1.17 2001-11-06 21:51:19 richard Exp $
# python version check
import sys
self.wfile.write('Status: %s\r\n'%code)
def send_header(self, keyword, value):
self.wfile.write("%s: %s\r\n" % (keyword, value))
- def end_headers(self, keyword, value):
+ def end_headers(self):
self.wfile.write("\r\n")
def main(out, err):
import urllib
request.send_response(200)
request.send_header('Content-Type', 'text/html')
+ request.end_headers()
w = request.wfile.write
w('<html><head><title>Roundup instances index</title></head>\n')
w('<body><h1>Roundup instances index</h1><ol>\n')
#
# $Log: not supported by cvs2svn $
+# Revision 1.16 2001/11/01 22:04:37 richard
+# Started work on supporting a pop3-fetching server
+# Fixed bugs:
+# . bug #477104 ] HTML tag error in roundup-server
+# . bug #477107 ] HTTP header problem
+#
# Revision 1.15 2001/10/29 23:55:44 richard
# Fix to CGI top-level index (thanks Juergen Hermann)
#