Mention that the form framework uses HTML template ... (quixote/CHANGES)
Andrew Kuchling <akuchlin-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]> Tue, 07 Jan 2003 11:26:44 -0500
| Newsgroups | gmane.comp.web.quixote.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /home/cvs/quixote
In directory hewson:/tmp/cvs-serv18455
Modified Files:
CHANGES
Log Message:
Mention that the form framework uses HTML templates; re-order changes
Index: CHANGES
===================================================================
RCS file: /home/cvs/quixote/CHANGES,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- CHANGES 23 Oct 2002 20:31:04 -0000 1.49
+++ CHANGES 7 Jan 2003 16:26:41 -0000 1.50
@@ -1,16 +1,27 @@
-0.6 (?? ??? 2002):
+0.6 (?? ??? 2003):
- * Make util.xmlrpc() return an HTTP 405 Method Not Allowed error
- if the method isn't a POST.
+ * Merged form/form.py and form/form_templates.ptl into
+ form/form.ptl. (This means that you should completely remove [or
+ rename] your old Quixote installation directory *before* installing
+ 0.6, or the old form/form.py will shadow the new form.ptl.)
+
+ * The form framework now uses automatic HTML escaping. This
+ means that applications using the form framework will have
+ to either be changed to use automatic HTML escaping themselves,
+ or to use str() to convert htmltext instances back to Python strings.
+
+ See doc/upgrading.txt for more information.
* Make Quixote a bit more friendly to multi-threaded applications
by allowing multiple simultaneous publishers, each handling one
request (patch by Titus Brown).
- * Merged form/form.py and form/form_templates.ptl into
- form/form.ptl. (This means that you should completely remove [or
- rename] your old Quixote installation directory *before* installing
- 0.6, or the old form/form.py will shadow the new form.ptl.)
+ * Make util.xmlrpc() return an HTTP 405 Method Not Allowed error
+ if the method isn't a POST.
+
+ * Added demo/run_cgi.py, a script that makes it easy to write one
+ file CGI applications that use Quixote. See the comments at the
+ top of the demo/run_cgi.py file for instructions.
0.5.1 (8 Oct 2002):