SVN: r25278 - trunk/quixote
Neil Schemenauer <nascheme-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]> Wed, 6 Oct 2004 12:20:44 -0400
| Newsgroups | gmane.comp.web.quixote.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: nascheme
Date: 2004-10-06 11:49:42 -0400 (Wed, 06 Oct 2004)
New Revision: 25278
Modified:
trunk/quixote/CHANGES
trunk/quixote/LICENSE
trunk/quixote/__init__.py
trunk/quixote/setup.py
Log:
release 1.2 (brown paper bag in effect)
Modified: trunk/quixote/CHANGES
===================================================================
--- trunk/quixote/CHANGES 2004-10-06 15:47:25 UTC (rev 25277)
+++ trunk/quixote/CHANGES 2004-10-06 15:49:42 UTC (rev 25278)
@@ -1,3 +1,9 @@
+1.2 (2004-10-06) r25277:
+
+ * Fix Medusa server bug introduced in 1.1. HTTP headers must have
+ "HTTP_" prepended to them.
+
+
1.1 (2004-10-05) r25259:
* Fix example Apache directive for SCGI demo.
Modified: trunk/quixote/LICENSE
===================================================================
--- trunk/quixote/LICENSE 2004-10-06 15:47:25 UTC (rev 25277)
+++ trunk/quixote/LICENSE 2004-10-06 15:49:42 UTC (rev 25278)
@@ -1,7 +1,7 @@
CNRI OPEN SOURCE LICENSE AGREEMENT
IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. BY
-COPYING, INSTALLING OR OTHERWISE USING QUIXOTE-1.1 SOFTWARE, YOU
+COPYING, INSTALLING OR OTHERWISE USING QUIXOTE-1.2 SOFTWARE, YOU
ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS
LICENSE AGREEMENT.
@@ -9,37 +9,38 @@
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.1 software in source or binary form and its associated
- documentation ("Quixote").
+ Quixote-1.2 software in source or binary form and its associated
+ documentation ("Quixote-1.2").
2. Subject to the terms and conditions of this License Agreement,
CNRI hereby grants Licensee a nonexclusive, royalty-free, world-
wide license to reproduce, analyze, test, perform and/or display
publicly, prepare derivative works, distribute, and otherwise use
- Quixote alone or in any derivative version, provided, however,
- that CNRI's License Agreement and CNRI's notice of copyright,
- i.e., "Copyright (c) 2004 Corporation for National Research
- Initiatives; All Rights Reserved" are retained in Quixote alone
- or in any derivative version prepared by Licensee.
+ Quixote-1.2 alone or in any derivative version, provided,
+ however, that CNRI's License Agreement and CNRI's notice of
+ copyright, i.e., "Copyright (c) 2004 Corporation for National
+ Research Initiatives; All Rights Reserved" are retained in
+ Quixote-1.2 alone or in any derivative version prepared by
+ Licensee.
3. In the event Licensee prepares a derivative work that is based on
- or incorporates Quixote or any part thereof, and wants to make
- the derivative work available to others as provided herein, then
- Licensee hereby agrees to include in any such work a brief
- summary of the changes made to Quixote.
+ or incorporates Quixote-1.2 or any part thereof, and wants to
+ make the derivative work available to others as provided herein,
+ then Licensee hereby agrees to include in any such work a brief
+ summary of the changes made to Quixote-1.2.
-4. CNRI is making Quixote available to Licensee on an "AS IS" basis.
- CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED.
- BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
- DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR
- FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF QUIXOTE
- WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
+4. CNRI is making Quixote-1.2 available to Licensee on an "AS IS"
+ basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+ IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO
+ AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY
+ OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF QUIXOTE-
+ 1.2 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF
- QUIXOTE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR
- LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING
- QUIXOTE, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE
- POSSIBILITY THEREOF.
+ QUIXOTE-1.2 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES
+ OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE
+ USING QUIXOTE-1.2, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF
+ THE POSSIBILITY THEREOF.
6. This License Agreement will automatically terminate upon a
material breach of its terms and conditions.
@@ -53,7 +54,7 @@
trademarks or trade name in a trademark sense to endorse or
promote products or services of Licensee, or any third party.
-8. By copying, installing or otherwise using Quixote, Licensee
+8. By copying, installing or otherwise using Quixote-1.2, Licensee
agrees to be bound by the terms and conditions of this License
Agreement.
Modified: trunk/quixote/__init__.py
===================================================================
--- trunk/quixote/__init__.py 2004-10-06 15:47:25 UTC (rev 25277)
+++ trunk/quixote/__init__.py 2004-10-06 15:49:42 UTC (rev 25278)
@@ -7,7 +7,7 @@
__revision__ = "$Id$"
-__version__ = "1.1"
+__version__ = "1.2"
__all__ = ['Publisher',
'get_publisher', 'get_request', 'get_session', 'get_user',
Modified: trunk/quixote/setup.py
===================================================================
--- trunk/quixote/setup.py 2004-10-06 15:47:25 UTC (rev 25277)
+++ trunk/quixote/setup.py 2004-10-06 15:49:42 UTC (rev 25278)
@@ -20,7 +20,7 @@
sources=["src/cimport.c"])
kw = {'name': "Quixote",
- 'version': "1.1",
+ 'version': "1.2",
'description': "A highly Pythonic Web application framework",
'author': "MEMS Exchange",
'author_email': "quixote-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]",