From: <sub...@co...> - 2004-12-29 17:19:33
|
Author: ianb Date: 2004-12-29 17:19:31 +0000 (Wed, 29 Dec 2004) New Revision: 505 Modified: trunk/SQLObject/docs/SQLObject.txt trunk/SQLObject/docs/build Log: * Fixed snippet reference * Made build use cd instead of pushd/popd Modified: trunk/SQLObject/docs/SQLObject.txt =================================================================== --- trunk/SQLObject/docs/SQLObject.txt 2004-12-29 17:02:51 UTC (rev 504) +++ trunk/SQLObject/docs/SQLObject.txt 2004-12-29 17:19:31 UTC (rev 505) @@ -474,7 +474,7 @@ An alternative to ``.select`` is ``.selectBy``. It works like: .. raw:: html - :file: ../examples/snippets/select-by.html + :file: ../examples/snippets/person-select-by.html Each keyword argument is a column, and all the keyword arguments are ANDed together. The return value is a `SelectResult`, so you Modified: trunk/SQLObject/docs/build =================================================================== --- trunk/SQLObject/docs/build 2004-12-29 17:02:51 UTC (rev 504) +++ trunk/SQLObject/docs/build 2004-12-29 17:19:31 UTC (rev 505) @@ -1,7 +1,7 @@ #!/bin/sh -pushd ../examples > /dev/null +cd ../examples ./examplestripper.py -popd > /dev/null +cd ../docs buildhtml.py --report=2 --prune=.svn --prune=europython --silent --no-toc-backlinks |