Re: [Zope] __bobo_traverse__ and a no-object

2006-07-15 Thread Garito
Alec Mitchell escribió: On 7/14/06, Garito [EMAIL PROTECTED] wrote: Garito escribió: Dieter Maurer escribió: Garito wrote at 2006-7-14 07:04 +0200: ... def __bobo_traverse__(self, REQUEST, name): obj = getattr(self, name, None) ... I wonder why I can do this on a Page Template:

Re: [Zope] __bobo_traverse__ and a no-object

2006-07-14 Thread Garito
Garito escribió: Hi all! Please, look at this code: def __bobo_traverse__(self, REQUEST, name): obj = getattr(self, name, None) if obj is not None: return obj else: obj = self.Dame(name) if obj is not None: return obj else:

Re: [Zope] __bobo_traverse__ and a no-object

2006-07-14 Thread Andreas Jung
--On 14. Juli 2006 17:17:51 +0200 Garito [EMAIL PROTECTED] wrote: Garito escribió: Anyone can tell me what is happening here? The Zope mailing list is not a helpdesk with a guaranteed response time. No need to grouch! -aj pgpnF2JmaCweW.pgp Description: PGP signature

Re: [Zope] __bobo_traverse__ and a no-object

2006-07-14 Thread Garito
Andreas Jung escribió: --On 14. Juli 2006 17:17:51 +0200 Garito [EMAIL PROTECTED] wrote: Garito escribió: Anyone can tell me what is happening here? The Zope mailing list is not a helpdesk with a guaranteed response time. No need to grouch! -aj Sorry I don't pretend to be rude! --

Re: [Zope] __bobo_traverse__ and a no-object

2006-07-14 Thread Dieter Maurer
Garito wrote at 2006-7-14 07:04 +0200: ... def __bobo_traverse__(self, REQUEST, name): obj = getattr(self, name, None) ... I wonder why I can do this on a Page Template: tal:b tal:replace='python: here.Texto' / Where Texto is a adquired property, but not this: tal:b

Re: [Zope] __bobo_traverse__ and a no-object

2006-07-14 Thread Alec Mitchell
On 7/14/06, Dieter Maurer [EMAIL PROTECTED] wrote: Garito wrote at 2006-7-14 07:04 +0200: ... def __bobo_traverse__(self, REQUEST, name): obj = getattr(self, name, None) ... I wonder why I can do this on a Page Template: tal:b tal:replace='python: here.Texto' / Where Texto is a

Re: [Zope] __bobo_traverse__ and a no-object

2006-07-14 Thread Garito
Dieter Maurer escribió: Garito wrote at 2006-7-14 07:04 +0200: ... def __bobo_traverse__(self, REQUEST, name): obj = getattr(self, name, None) ... I wonder why I can do this on a Page Template: tal:b tal:replace='python: here.Texto' / Where Texto is a adquired property, but not

Re: [Zope] __bobo_traverse__ and a no-object

2006-07-14 Thread Garito
Dieter Maurer escribió: Garito wrote at 2006-7-14 07:04 +0200: ... def __bobo_traverse__(self, REQUEST, name): obj = getattr(self, name, None) ... I wonder why I can do this on a Page Template: tal:b tal:replace='python: here.Texto' / Where Texto is a adquired property, but not

Re: [Zope] __bobo_traverse__ and a no-object

2006-07-14 Thread Alec Mitchell
On 7/14/06, Garito [EMAIL PROTECTED] wrote: Garito escribió: Dieter Maurer escribió: Garito wrote at 2006-7-14 07:04 +0200: ... def __bobo_traverse__(self, REQUEST, name): obj = getattr(self, name, None) ... I wonder why I can do this on a Page Template: tal:b

[Zope] __bobo_traverse__ and a no-object

2006-07-13 Thread Garito
Hi all! Please, look at this code: def __bobo_traverse__(self, REQUEST, name): obj = getattr(self, name, None) if obj is not None: return obj else: obj = self.Dame(name) if obj is not None: return obj else: if 'Parametros' in