SVN: r25803 - trunk/quixote
David Binger <dbinger-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]> Fri, 17 Dec 2004 19:13:28 -0500
| Newsgroups | gmane.comp.web.quixote.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: dbinger
Date: 2004-12-16 18:08:54 -0500 (Thu, 16 Dec 2004)
New Revision: 25803
Modified:
trunk/quixote/CHANGES
trunk/quixote/LICENSE
trunk/quixote/setup.py
Log:
Update changelog, license, and setup to be ready for 2.0a4.
Modified: trunk/quixote/CHANGES
===================================================================
--- trunk/quixote/CHANGES 2004-12-16 22:47:16 UTC (rev 25802)
+++ trunk/quixote/CHANGES 2004-12-16 23:08:54 UTC (rev 25803)
@@ -1,3 +1,16 @@
+2.0a4 (2004-12-??) >r25802:
+
+ * Introduce [html$] and [plain$] templates to support $-substitution.
+ Change [html] and [plain] back, so that they do not do $-substitution.
+ If you changed existing templates to work with 2.0a2 or 2.0a3 by
+ escaping $'s, then you should change them back. If you are using
+ $-substitution in any templates, you should stick a $ on the end of
+ the template type.
+
+ * Change simple_server so that the PATH_INFO value is unquoted.
+
+ * Add HTTPResponse.get_content_type().
+
2.0a3 (2004-12-09) r25738:
* Update most of the doc files. Add q1 -> q2 upgrade notes.
Modified: trunk/quixote/LICENSE
===================================================================
--- trunk/quixote/LICENSE 2004-12-16 22:47:16 UTC (rev 25802)
+++ trunk/quixote/LICENSE 2004-12-16 23:08:54 UTC (rev 25803)
@@ -1,7 +1,7 @@
CNRI OPEN SOURCE LICENSE AGREEMENT
IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. BY
-COPYING, INSTALLING OR OTHERWISE USING QUIXOTE-2.0A3 SOFTWARE,
+COPYING, INSTALLING OR OTHERWISE USING QUIXOTE-2.0A4 SOFTWARE,
YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS
LICENSE AGREEMENT.
@@ -9,37 +9,37 @@
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-2.0a3 software in source or binary form and its
- associated documentation ("Quixote-2.0a3").
+ Quixote-2.0a4 software in source or binary form and its
+ associated documentation ("Quixote-2.0a4").
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-2.0a3 alone or in any derivative version, provided,
+ Quixote-2.0a4 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-2.0a3 alone or in any derivative version prepared by
+ Quixote-2.0a4 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-2.0a3 or any part thereof, and wants to
+ or incorporates Quixote-2.0a4 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-2.0a3.
+ summary of the changes made to Quixote-2.0a4.
-4. CNRI is making Quixote-2.0a3 available to Licensee on an "AS IS"
+4. CNRI is making Quixote-2.0a4 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-
- 2.0A3 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
+ 2.0A4 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF
- QUIXOTE-2.0A3 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL
+ QUIXOTE-2.0A4 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL
DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR
- OTHERWISE USING QUIXOTE-2.0A3, OR ANY DERIVATIVE THEREOF, EVEN IF
+ OTHERWISE USING QUIXOTE-2.0A4, OR ANY DERIVATIVE THEREOF, EVEN IF
ADVISED OF THE POSSIBILITY THEREOF.
6. This License Agreement will automatically terminate upon a
@@ -54,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-2.0a3, Licensee
+8. By copying, installing or otherwise using Quixote-2.0a4, Licensee
agrees to be bound by the terms and conditions of this License
Agreement.
Modified: trunk/quixote/setup.py
===================================================================
--- trunk/quixote/setup.py 2004-12-16 22:47:16 UTC (rev 25802)
+++ trunk/quixote/setup.py 2004-12-16 23:08:54 UTC (rev 25803)
@@ -20,7 +20,7 @@
sources=["src/cimport.c"])
kw = {'name': "Quixote",
- 'version': "2.0a3",
+ 'version': "2.0a4",
'description': "A highly Pythonic Web application framework",
'author': "MEMS Exchange",
'author_email': "quixote-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]",