----- Original Message ----
From: Maciej Wisniowski <[EMAIL PROTECTED]>
>As far as I understand you have script (say it has id 'handle_404_scr')
>that handles 404 errors in 'root' folder. In this script you have
>something like:
><div align="center"
> tal:define="mycontext here"
> tal:condition="here/hasSearchEngine(mycontext)">
>
>Yes? So how is this script called?
return 0
catalog = ''
try:
catalog = getattr(context, context.superValues('ZCatalog')[0].id)
except AttributeError:
pass
if catalog:
return 1
>I'm not sure what exactly is your case but you may try:
>
><div align="center"
> tal:condition="here/hasSearchEngine(here/aq_inner)">
>
>or just (without passing a parameter):
>
><div align="center"
> tal:condition="here/aq_inner/hasSearchEngine()">
None of that worked :( The latter gave me the same as without passing
"aq_inner", while the former threw errors based on syntax.
TIA,
Javier
____________________________________________________________________________________
Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail beta.
http://new.mail.yahoo.com_______________________________________________
Zope maillist - [email protected]
http://mail.zope.org/mailman/listinfo/zope
** No cross posts or HTML encoding! **
(Related lists -
http://mail.zope.org/mailman/listinfo/zope-announce
http://mail.zope.org/mailman/listinfo/zope-dev )