[Zope] i18nfolder installation attribute error navigation_properties

2006-03-09 Thread thomas desvenain
quot;/zope/test/Products/I18NFolder/Installation.py", line 26, in __init__ self.navigation_properties = self.portal_properties.navigation_properties AttributeError: navigation_properties what should i do ? thanks thomas desvenain ___ Zope maillis

[Zope] i18nLayer error

2006-03-09 Thread thomas desvenain
hello, i have a question about I18NLayer 0.6.0, this time i have installed PloneLanguageTool and, then, I18NLayer when i create a i18nlayer content, and then a translation, i got this error : Site error This site encountered an error trying to fulfill your request. The errors were: Error Typ

[Zope] acquisition uml modelisation

2006-03-20 Thread thomas desvenain
hello, do you know where i may find tools for acquisition representation in uml ? thanks thomas desvenain ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http

[Zope] pointers in zope (newbie question)

2006-04-25 Thread thomas desvenain
hello, i need to have the same object at different places, more properly, i need to refer an object at different places, in different folders, of my zope application (i use formulator, and i would like that when i modify properties of the "same" field in different forms, all the others are updat

[Zope] refreshing external method

2006-06-02 Thread thomas desvenain
hello, is there any way to refresh External Method (as Extension/Install.py for exemple) without restarting zope, as product's "refresh" method ? thanks thomas ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cros

Re: [Zope] refreshing external method

2006-06-06 Thread thomas desvenain
by the machinery. Stefan On 2. Jun 2006, at 13:47, thomas desvenain wrote: > hello, > > is there any way to refresh External Method (as Extension/Install.py > for exemple) without restarting zope, as product's "refresh" method ? > -- Anything tha

[Zope] debug with ipython

2006-06-06 Thread thomas desvenain
hello, is it possible to use zopectl debug with ipython ? if yes, how ? thanks thomas ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mail

Re: [Zope] debug with ipython

2006-06-07 Thread thomas desvenain
thanks ! and is it possible to run zope in console mode (as debug mode) whithout having to shutdown the server (to unlock ZODB) ? 2006/6/7, Timur Izhbulatov <[EMAIL PROTECTED]>: On Tue, Jun 06, 2006 at 04:12:40PM +0200, thomas desvenain wrote: > is it possible to use zopectl debug wit

[Zope] creating a new permission

2006-06-07 Thread thomas desvenain
hello, i am searching for hours, and i don't find how to define a new permission, in python code, for my product can you help me ? thanks thomas ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTM

[Zope] filter messages at startup

2006-06-13 Thread thomas desvenain
hello,is it possible to filter messages at zope startup/debug, as we can do with logs ?thanksthomas ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zop

Re: [Zope] filter messages at startup

2006-06-13 Thread thomas desvenain
claration for nonexistent method 'manage_FTPget'etc2006/6/13, Andreas Jung < [EMAIL PROTECTED]>:--On 13. Juni 2006 11:28:51 +0200 thomas desvenain <[EMAIL PROTECTED]> wrote:> hello,>> is it possible to filter messages at zope startup/debug, as we can do with> logs ? >

Re: [Zope] Re: filter messages at startup

2006-06-14 Thread thomas desvenain
2006/6/13, Chris McDonough <[EMAIL PROTECTED]>: I suppose a log call is fine. I *really* like these messages, because they catch a lot of my own boneheaded security declaration errors. But for ones that aren't actually "real" problems (like the ones shown by the OP), it would be nice to be able

Re: [Zope] Render DTML inslide ZPT slot

2006-06-16 Thread thomas desvenain
ailman/listinfo/zope-dev ) -- Thomas Desvenain Junior Plone/Zope, Looking for a Job ! Now, trainee at Institut National de Recherche Agronomique Mathématiques, Informatique et Génôme laboratory 78350 Jouy en Josas 0134652943 ___ Zope maillist - Zop

Re: [Zope] No joy on 8080.

2006-06-25 Thread thomas desvenain
i had this problem : i forgot giving to zope server's "effective-user" the rights on zope instance directory(effective-user name is defined in zopeinstance/etc/zope.conf) 2006/6/26, Ignacio Valdes <[EMAIL PROTECTED]>: Hello all,I installed Zope on Fedora Core 5 using yum install zope, I openedport

[Zope] get non-acquired attributes of an instance

2006-06-26 Thread thomas desvenain
hello, is it possible to get the list of all an object's attributes, excepted the ones acquired from parents ? thanks -- Thomas Desvenain Junior Plone/Zope analyst-developer, Looking for a Job ! Now, trainee at Institut National de Recherche Agronomique Mathématiques, Informatique et G

Re: [Zope] get non-acquired attributes of an instance

2006-06-26 Thread thomas desvenain
aq_base(aq_inner(obj)).__dict__ ? hmm it doesn't works, i get metadata only, and with dir(aq_base(aq_inner(test.toto))) i get acquired methods too... 2006/6/26, Andreas Jung <[EMAIL PROTECTED]>: --On 26. Juni 2006 10:30:50 +0200 thomas desvenain <[EMAIL PROTECTED]> wrote:

Re: [Zope] get non-acquired attributes of an instance

2006-06-26 Thread thomas desvenain
2006/6/26, Andreas Jung <[EMAIL PROTECTED]>: --On 26. Juni 2006 10:53:39 +0200 thomas desvenain <[EMAIL PROTECTED]> wrote: > aq_base(aq_inner(obj)).__dict__ ? > > hmm it doesn't works, i get metadata only, 'metadata'? This is an unkown term in the conte