SVN: r20241 - in trunk/quixote: . src

akuchlin-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected] Fri, 17 Jan 2003 08:51:45 -0500
Newsgroups gmane.comp.web.quixote.cvs
Message-ID <[email protected]>
Author: akuchlin
Date: 2003-01-17 08:51:44 -0500 (Fri, 17 Jan 2003)
New Revision: 20241

Modified:
   trunk/quixote/ACKS
   trunk/quixote/CHANGES
   trunk/quixote/src/_c_htmltext.c
Log:
Fix _c_htmltext so it builds on Windows



Modified: trunk/quixote/src/_c_htmltext.c
==============================================================================
--- trunk/quixote/src/_c_htmltext.c	(original)
+++ trunk/quixote/src/_c_htmltext.c	2003-01-17 08:51:45.000000000 -0500
@@ -715,7 +715,7 @@
 };
 
 static PyTypeObject htmltext_Type = {
-	PyObject_HEAD_INIT(&PyType_Type)
+	PyObject_HEAD_INIT(NULL)
 	0,			/*ob_size*/
 	"htmltext",		/*tp_name*/
 	sizeof(htmltextObject),	/*tp_basicsize*/
@@ -785,7 +785,7 @@
 };
 
 static PyTypeObject QuoteWrapper_Type = {
-	PyObject_HEAD_INIT(&PyType_Type)
+	PyObject_HEAD_INIT(NULL)
 	0,			/*ob_size*/
 	"QuoteWrapper",		/*tp_name*/
 	sizeof(QuoteWrapperObject),	/*tp_basicsize*/
@@ -823,7 +823,7 @@
 };
 
 static PyTypeObject TemplateIO_Type = {
-	PyObject_HEAD_INIT(&PyType_Type)
+	PyObject_HEAD_INIT(NULL)
 	0,			/*ob_size*/
 	"TemplateIO",		/*tp_name*/
 	sizeof(TemplateIO_Object),/*tp_basicsize*/

Modified: trunk/quixote/CHANGES
==============================================================================
--- trunk/quixote/CHANGES	(original)
+++ trunk/quixote/CHANGES	2003-01-17 08:51:45.000000000 -0500
@@ -1,6 +1,8 @@
 0.6b2 (?? ??? 2003):
 
-  * Fix the Medusa HTTP server to work with HTML templates.
+  * Fix the Medusa HTTP server to work with HTML templates.  (David M. Cooke)
+
+  * Fix _c_htmltext.c to compile on Windows.  (Graham Fawcett)
 
 
 0.6b1 (9 Jan 2003):

Modified: trunk/quixote/ACKS
==============================================================================
--- trunk/quixote/ACKS	(original)
+++ trunk/quixote/ACKS	2003-01-17 08:51:45.000000000 -0500
@@ -18,6 +18,7 @@
 Robin Dunn (original author of fcgi.py)
 Jon Dyte
 David Edwards
+Graham Fawcett
 Jim Fulton (original author of the *Request and *Response classes)
 David Goodger
 Neal M. Holtz