From: <sub...@co...> - 2005-02-21 13:33:53
|
Author: phd Date: 2005-02-21 13:33:48 +0000 (Mon, 21 Feb 2005) New Revision: 631 Modified: trunk/SQLObject/docs/Inheritance.txt trunk/SQLObject/docs/build Log: Minor inheritance documentation update. Modified: trunk/SQLObject/docs/Inheritance.txt =================================================================== --- trunk/SQLObject/docs/Inheritance.txt 2005-02-21 12:49:20 UTC (rev 630) +++ trunk/SQLObject/docs/Inheritance.txt 2005-02-21 13:33:48 UTC (rev 631) @@ -3,6 +3,13 @@ Inheritance ----------- +Daniel Savard has implemented inheritance for SQLObject. According to +ObjectMatter_ this is a kind of vertical inheritance. The only difference +is that objects reference their leafs, not parents. Links to parents are +reconstructed at run-time using the hierarchy of Python classes. + +.. _ObjectMatter: http://www.objectmatter.com/vbsf/docs/maptool/ormapping.html + * As suggested by Ian Bicking, each child class now has the same ID than the parent class. No more need for childID column and parent foreignKey (with a small speed boost). Modified: trunk/SQLObject/docs/build =================================================================== --- trunk/SQLObject/docs/build 2005-02-21 12:49:20 UTC (rev 630) +++ trunk/SQLObject/docs/build 2005-02-21 13:33:48 UTC (rev 631) @@ -1,7 +1,6 @@ #!/bin/sh -cd ../examples -./examplestripper.py -cd ../docs -buildhtml.py --report=2 --prune=.svn --prune=europython --silent --no-toc-backlinks - +cd ../examples && \ +./examplestripper.py && \ +cd ../docs && \ +exec buildhtml.py --report=2 --prune=.svn --prune=europython --silent --no-toc-backlinks |