[Zope-dev] (no subject)

2003-03-30 Thread Matt Ficken
-- __ Sign-up for your own FREE Personalized E-mail at Mail.com http://www.mail.com/?sr=signup ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No

[Zope-dev] Create top-level folder

2003-03-30 Thread Matt Ficken
Part of my product's job is to create a top-level folder. I can have it do that only when, from the management interface's add function, I add it to the root directory. I would like it to always be able to go to the root directory, regardless of where its added. In order to do this, I need to

[Zope-dev] Create top-level folder

2003-03-30 Thread Matt Ficken
Part of my product's job is to create a top-level folder. Currently, I can only get it to create the folder in what ever folder the product is added in. I would like to be able to get access to the root directory object but don't know how. How do I access the root directory object? Would

[Zope-dev] Call Product Constructor

2003-03-28 Thread Matt Ficken
This is the __init__.py of my product (ZID): from ZIDProduct import ZID def initialize ( context ): context.registerClass( ZID, constructors = ( ZID.manage_addZIDForm, ZID.manage_addZID, ZID.manage_add_folder ) ) I want the constructor ZID.manage_add_folder to

[Zope-dev] Connection Refference

2003-03-27 Thread Matt Ficken
I am creating a product which has classes that override the Folder class so that my class controls access to some folders that it creates. From within the Folder class, specificially when the _setOb, _getOb and _delOb methods are called, is there a way to get access to the connection

[Zope-dev] SSL Support

2003-03-25 Thread Matt Ficken
Does Zope support SSL? Is there a way I can enable/activate that support from a product? -- __ Sign-up for your own FREE Personalized E-mail at Mail.com http://www.mail.com/?sr=signup ___

[Zope-dev] Encryption help

2003-03-22 Thread Matt Ficken
I am making a product that needs to recieve requests from clients over HTTPS and store data in an encrypted form only. Does Zope support HTTPS, and if yes, how do I activate that support? Further, how can I encrypt some files my product generates and have Zope write only the encrypted version