Is it possible to show the join column name in joins ? An example :

class Parent(SQLObject):
      something
      child = MultipleJoin("Child",joinColum="parent_id")
class Child(SQLObject):
      parent=ForeignKey("Parent")

Oh, and also the table name. This may not be of interest for SQLObject
created tables, but if I have pre-exist database, the naming convention
may not be the default and showing these info as well becomes necessary
for admin/development.

Ronald Jaramillo wrote:
> Hi,
> I have spend some quality time with CatWalk  the last couple of days.
> CatWalk is my model browser for TurboGears applications.
>
> The net result of this is a new release which includes:
> - support for IE
> - support for MultipleJoins
> - support for configuring which column name to use as label for
> ForeignKeys
> - support for more SQLObject column types, blob's and pickles are
> still in the cold
> - host based access control, by default only granted access from
> localhost, but other hosts can be configured
>
> You can read more about CatWalk here:
> http://www.checkandshare.com/catwalk/
>
> There is also a tutorial, that walks you trough the development of a
> survey application for TurboGears using CatWalk.
> http://www.checkandshare.com/catwalk/tutorial.html
>
> You can download the new release here (and read the changelog):
> http://www.checkandshare.com/catwalk/download.html
>
> I will appreciate comments about the tutorial. If you encounter any
> problems while following it, or if you think that something is
> unclear or just plain wrong, please let me know. Even typos are
> welcome =)
> 
> Have fun.
> Ronald Jaramillo

Reply via email to