[Zope3-dev] Path used in test.py for Zope 3 and individual packages.

2006-10-21 Thread Baiju M
Hi, I was experimenting with creating some eggs [1] . When I tried to run tests of zope.configuration (Individual package) I got some test failures, this is due to a path problem: Failure in test checkDuplicate (zope.configuration.config.ConfigurationContext) Failed doctest test for

[Zope3-dev] Re: Path used in test.py for Zope 3 and individual packages.

2006-10-21 Thread Baiju M
On 10/21/06, Baiju M [EMAIL PROTECTED] wrote: [1] ftp://ftp.berlios.de/pub/zissue/z3/ Sorry, this is a temporary location, will be removed soon. Regards, Baiju M ___ Zope3-dev mailing list Zope3-dev@zope.org Unsub:

[Zope3-dev] Zope Configuration Processing and Side Effects

2006-10-21 Thread Jim Fulton
At: http://dev.zope.org/Zope3/ZopeConfigurationProcessingAndSideEffects I've written an informational proposal stating the goal for eliminating side effects, other than import, during the first phase of configuration processing and generally minimizing first phase processing. This will

Re: [Zope3-dev] Zope Configuration Processing and Side Effects

2006-10-21 Thread Baiju M
On 10/21/06, Jim Fulton [EMAIL PROTECTED] wrote: At: http://dev.zope.org/Zope3/ZopeConfigurationProcessingAndSideEffects I have added this page to new wiki: http://zope3.zwiki.org/ZopeConfigurationProcessingAndSideEffects Also updated the index, http://zope3.zwiki.org/Zope3Proposals

[Zope3-dev] IFolder and IAdding

2006-10-21 Thread Tim Terlegård
There's a really useful method add in IAdding. As the novice zope3 developer I am I would like that method in IFolder (as well). Is there a good reason why IFolder or IWriteContainer doesn't have an add method? It's possible to add content to an IFolder through the IWriteContainer API, but I'd

Re: [Zope3-dev] IFolder and IAdding

2006-10-21 Thread Tim Terlegård
I want to use a formlib add form and I have a view called addEvent: browser:page for=zope.app.folder.interfaces.IFolder name=addEvent class=.eventforms.EventAddForm permission=zope.ManageContent / I changed the class argument to be a new class called

[Zope3-dev] formlib configuration

2006-10-21 Thread Tim Terlegård
What is the recommended way to redirect to some page after a formlib form is submitted or cancelled? Is it perhaps to override the action method? I don't find any directives for formlib. Are there any? I think redirection is a common task and to me it would make sense to have configuration

[Zope3-dev] Hashing issues

2006-10-21 Thread Eldar Omuraliev
GreetingsI hash some objects and it works fine when I set and get them. However, when I move the Data.fs to a different server on a separate machine running exactly the same code, the hashes don't match.Here's the code: (I tried the paste bin, but it was done at the moment)class

Re: [Zope3-dev] Hashing issues

2006-10-21 Thread Christian Theune
Could you check whether one server is 32-bit, the other 64-bit? (And Python being compiled in 32-bit on one machine and 64-bit the other.) I had some trouble with the hash function in this setup lately. Christian Eldar Omuraliev wrote: Greetings I hash some objects and it works fine when I set

[Zope3-dev] Re: Zope Configuration Processing and Side Effects

2006-10-21 Thread Simon Michael
Baiju M wrote: I have added this page to new wiki: http://zope3.zwiki.org/ZopeConfigurationProcessingAndSideEffects Also updated the index, http://zope3.zwiki.org/Zope3Proposals Thank you, Baiju. Let's use new wiki now onwards. Sooner or later this will be wiki.zope.org We have to make

Re: [Zope3-dev] Re: Zope Configuration Processing and Side Effects

2006-10-21 Thread Benji York
Simon Michael wrote: Baiju M wrote: Let's use new wiki now onwards. Sooner or later this will be wiki.zope.org We have to make current wiki read only very soon. How do you feel about this folks ? I'd like to make the old zope 3 wiki read-only and activate the subscriptions on the new one.

Re: [Zope3-dev] zope.i18n dependency in zope.configuration

2006-10-21 Thread Fred Drake
On 10/21/06, Baiju M [EMAIL PROTECTED] wrote: I was looking at zope.configuration source, zope.i18n is given as a dependency in DEPENDENCIES.cfg, but it is not imported anywhere in that package. So, can I remove 'zope.i18n' line from DEPENDENCIES.cfg file? It looks like zope.i18n can go,

Re: [Zope3-dev] Re: Zope Configuration Processing and Side Effects

2006-10-21 Thread Fred Drake
On 10/21/06, Simon Michael [EMAIL PROTECTED] wrote: How do you feel about this folks ? I'd like to make the old zope 3 wiki read-only and activate the subscriptions on the new one. A small but good step forward from the present situation of two identical writable wikis. The new wiki is much

Re: [Zope3-dev] Zope Configuration Processing and Side Effects

2006-10-21 Thread Baiju M
On 10/21/06, Jim Fulton [EMAIL PROTECTED] wrote: At: http://dev.zope.org/Zope3/ZopeConfigurationProcessingAndSideEffects I've written an informational proposal 'IsInformational' is a new wiki badge? I have added this to: http://zope3.zwiki.org/IsInformational under

Re: [Zope3-dev] zope.i18n dependency in zope.configuration

2006-10-21 Thread Baiju M
On 10/22/06, Fred Drake [EMAIL PROTECTED] wrote: On 10/21/06, Baiju M [EMAIL PROTECTED] wrote: I was looking at zope.configuration source, zope.i18n is given as a dependency in DEPENDENCIES.cfg, but it is not imported anywhere in that package. So, can I remove 'zope.i18n' line from