[Twisted-Python] row howto patch

The row howto has a syntax error in the bit about rowForeignKeys. "[(tableName, [(columnName, columnType)], containerMethodName, autoLoad]" I had a look at the source code, and the error appears to be a little deeper, in that there should be two lists of columns, one for parent columns, one for child columns. Patch below, sorry if formatting is poor, I'm on Outlook web access. jml Index: doc/howto/row.html =================================================================== RCS file: /cvs/Twisted/doc/howto/row.html,v retrieving revision 1.17 diff -u -r1.17 row.html --- doc/howto/row.html 27 Oct 2002 20:46:24 -0000 1.17 +++ doc/howto/row.html 28 Oct 2002 08:33:54 -0000 @@ -48,8 +48,8 @@ <ul> <li>rowForeignKeys - list of foreign keys to other database tables - in the form: [(tableName, [(columnName, columnType)], containerMethodName, - autoLoad]</li> + in the form: [(tableName, [(childColumnName, childColumnType)], + [(parentColumnName, parentColumnType)], containerMethodName, autoLoad]</li> <li>rowFactoryMethod - a method that creates instances of this class</li> </ul>

On Mon, 28 Oct 2002 19:55:44 +1100 "Jonathan Lange" <jonathan.lange@turnaroundsolutions.com> wrote:
Done. -- Itamar Shtull-Trauring http://itamarst.org/ Available for Python, Twisted, Zope and Java consulting

On Mon, 28 Oct 2002 19:55:44 +1100 "Jonathan Lange" <jonathan.lange@turnaroundsolutions.com> wrote:
Done. -- Itamar Shtull-Trauring http://itamarst.org/ Available for Python, Twisted, Zope and Java consulting
participants (2)
-
Itamar Shtull-Trauring
-
Jonathan Lange