SVN: r26050 - trunk/quixote/doc

David Binger <dbinger-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]> Thu, 10 Feb 2005 09:33:08 -0500
Newsgroups gmane.comp.web.quixote.cvs
Message-ID <[email protected]>
Author: dbinger
Date: 2005-02-10 09:33:08 -0500 (Thu, 10 Feb 2005)
New Revision: 26050

Modified:
    trunk/quixote/doc/upgrading.txt
Log:
Updte upgrading.txt to include Form constructor changes.


Modified: trunk/quixote/doc/upgrading.txt
===================================================================
--- trunk/quixote/doc/upgrading.txt	2005-02-10 14:29:17 UTC (rev 26049)
+++ trunk/quixote/doc/upgrading.txt	2005-02-10 14:33:08 UTC (rev 26050)
@@ -62,6 +62,11 @@

  Quixote 1's secure_errors configuration variable is not present in 
Quixote 2.

+Form.__init__ no longer has name or attrs keywords.  If your existing
+code calls Form.__init__ with 'attrs=foo', you'll need to change it to
+'**foo'.  Form instances no longer have a name attribute.  If your code
+looks for form.name, you can find it with form.attrs.get('name').
+
  Changes from 0.6.1 to 1.0
  -------------------------