[Zope-dev] More ZPatterns confusion

2000-11-26 Thread bentzion
I am trying to add a ZClass with a DataSkin Property sheet to a Virtual Rack. So I call the following: dtml-let ni="newItem(key=REQUEST['key'])" props="ni.propertysheets.get('Basic')" dtml-call "props.manage_changeProperties(REQUEST.form)" /dtml-let I assume this should call

[Zope-dev] How to get rid of obsolete Permissions

2000-11-26 Thread Joachim Schmitz
how can I get rid of the permissions defined for a ZClass, after I deleted the ZClass, all permissions for all ZClasses I ever created are still around and pollute my security or permission management screens. Mit freundlichen Grüßen Joachim Schmitz AixtraWare, Ing. Büro für

[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

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 import SQL import

Re: [Zope-dev] RFC: Python/Zope Interfaces

2000-11-26 Thread Dieter Maurer
Michel Pelletier writes: Also, defining the interface seperately keep the two things apart, impementation and interface, and doesn't allow you to sneak in a new method unless you also sneak it into the interface, thus making a stronger "contract" with the user. I am a bit astonished by

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 Products.ZSQLMethods.SQL import SQL