SVN: r25235 - trunk/quixote

nascheme-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected] Thu, 30 Sep 2004 14:27:11 -0400
Newsgroups gmane.comp.web.quixote.cvs
Message-ID <[email protected]>
Author: nascheme
Date: 2004-09-30 14:10:44 -0400 (Thu, 30 Sep 2004)
New Revision: 25235

Modified:
   trunk/quixote/CHANGES
   trunk/quixote/LICENSE
   trunk/quixote/__init__.py
   trunk/quixote/setup.py
Log:
Prepare for 1.1 release.


Modified: trunk/quixote/CHANGES
===================================================================
--- trunk/quixote/CHANGES	2004-09-30 17:36:19 UTC (rev 25234)
+++ trunk/quixote/CHANGES	2004-09-30 18:10:44 UTC (rev 25235)
@@ -1,3 +1,28 @@
+1.1 (2004-09-30) r25235:
+
+  * Fix example Apache directive for SCGI demo.
+
+  * On Windows, put both stdin and stdout in binary mode.
+
+  * Add 'buffered' flag to HTTPResponse (defaulting to True).
+
+  * Support for the Python 2.4 'compiler' package.
+
+  * Add HTTPRequest.get_scheme() method.
+
+  * Use os.urandom() if it is available.  Move randbytes() function
+    to quixote.util module.
+
+  * Convert tests to Sancho's utest framework.
+
+  Form2 library:
+
+    * Don't parse empty POSTs.
+
+    * Fix a subtle bug in the multiple select widget.  If nothing
+      is selected then the value should be None, not [None].
+
+
 1.0 (2004-07-01) r24581:
 
   * No changes from 1.0c1.

Modified: trunk/quixote/LICENSE
===================================================================
--- trunk/quixote/LICENSE	2004-09-30 17:36:19 UTC (rev 25234)
+++ trunk/quixote/LICENSE	2004-09-30 18:10:44 UTC (rev 25235)
@@ -1,7 +1,7 @@
 CNRI OPEN SOURCE LICENSE AGREEMENT
 
 IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY.  BY
-COPYING, INSTALLING OR OTHERWISE USING QUIXOTE-1.0 SOFTWARE, YOU
+COPYING, INSTALLING OR OTHERWISE USING QUIXOTE-1.1 SOFTWARE, YOU
 ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS
 LICENSE AGREEMENT.
 
@@ -9,7 +9,7 @@
    Research Initiatives, having an office at 1895 Preston White
    Drive, Reston, VA 20191 ("CNRI"), and the Individual or
    Organization ("Licensee") copying, installing or otherwise using
-   Quixote-1.0 software in source or binary form and its associated
+   Quixote-1.1 software in source or binary form and its associated
    documentation ("Quixote").
 
 2. Subject to the terms and conditions of this License Agreement,

Modified: trunk/quixote/__init__.py
===================================================================
--- trunk/quixote/__init__.py	2004-09-30 17:36:19 UTC (rev 25234)
+++ trunk/quixote/__init__.py	2004-09-30 18:10:44 UTC (rev 25235)
@@ -7,7 +7,7 @@
 
 __revision__ = "$Id$"
 
-__version__ = "1.0"
+__version__ = "1.1"
 
 __all__ = ['Publisher',
            'get_publisher', 'get_request', 'get_session', 'get_user',

Modified: trunk/quixote/setup.py
===================================================================
--- trunk/quixote/setup.py	2004-09-30 17:36:19 UTC (rev 25234)
+++ trunk/quixote/setup.py	2004-09-30 18:10:44 UTC (rev 25235)
@@ -20,7 +20,7 @@
                     sources=["src/cimport.c"])
 
 kw = {'name': "Quixote",
-      'version': "1.0",
+      'version': "1.1",
       'description': "A highly Pythonic Web application framework",
       'author': "MEMS Exchange",
       'author_email': "quixote-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]",