Re: [Zope-dev] sql methods and the namespace stack

2001-01-23 Thread Chris Withers
Tim McLaughlin wrote: > > Does anybody know why sql methods only search the request object instead of > traversing the dtml namespace stack? Nope, other than it's been like that for donkey's years... I guess the idea was that it didn't accidentally get parameters from elsewhere, which can be an

[Zope-dev] sql methods and the namespace stack

2001-01-22 Thread Tim McLaughlin
Does anybody know why sql methods only search the request object instead of traversing the dtml namespace stack? TIA, Tim McLaughlin ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML

Re: [Zope-dev] SQL-Methods Through-the-FileSystem

2000-11-26 Thread Johan Carlsson
> Johan Carlsson wrote: > > > > > Seb: > > > > Does anybody have a good suggestion how to > > > > develope SQL Method ftfs (through the filesystem) > > > > rather than ttw. > > > > > > > > Perferably in someway similare to the HTMLFile way > > > > > > try something like this: > > > > > > from P

Re: [Zope-dev] SQL-Methods Through-the-FileSystem

2000-11-26 Thread Ender
Johan Carlsson wrote: > > > Seb: > > > Does anybody have a good suggestion how to > > > develope SQL Method ftfs (through the filesystem) > > > rather than ttw. > > > > > > Perferably in someway similare to the HTMLFile way > > > > try something like this: > > > > from Products.ZSQLMethods.SQL

Re: [Zope-dev] SQL-Methods Through-the-FileSystem

2000-11-26 Thread Johan Carlsson
> Seb: > > Does anybody have a good suggestion how to > > develope SQL Method ftfs (through the filesystem) > > rather than ttw. > > > > Perferably in someway similare to the HTMLFile way > > try something like this: > > from Products.ZSQLMethods.SQL import SQL > import PoPy > > def man

[Zope-dev] SQL-Methods Through-the-FileSystem

2000-11-26 Thread Johan Carlsson
Hi all, Does anybody have a good suggestion how to develope SQL Method ftfs (through the filesystem) rather than ttw. Perferably in someway similare to the HTMLFile way to include DTML methods in Zope classes. Regards, Johan (One problem I recently discovered was the fact that SQl methods ma

[Zope-dev] SQL-Methods

2000-07-12 Thread Andre Schubert
Hi, i ave a problem, i do some sql-queries in my python product and would return the results like the ZSQLMethods. How do i have to return the data and field names from my python product to an dtml document so that i can work with it like ZMYSQL. ___