Hello, i cannot figure this one out. I am trying to pass the 
context_bar variable to my site wide default-master page in templates 
(the standard page) for the events module i am working on. I even 
checked out all of openacs from cvs today, to make sure i hadn't 
messed up any of the files that may be causing this (other stats, 
PostgreSQL 7.2.2 on Redhat)... oh yeah, and the events package is not 
the only module that doesn't work, context bar isn't working for the 
entire site.
the events/www/index.tcl file it says this:
set context_bar [ad_context_bar]
the index.adp page passes this on to site master like this:
<master>
<property name="title">Events</property>
<property name="context_bar">@context_bar@</property>
I am almost certain this is correct, but guess i might be doing 
something wrong. The odd thing is that the ad_admin_context_bar works:
the events/www/admin/index.tcl creates the context bar as follows:
set context_bar [ad_admin_context_bar "Events Administration"]
the www/admin/index.adp file passes this on like this
<master>
<property name="title">Events 
Administration</property>
<property name="context_bar">@context_bar@</property>
Any ideas of where to look for debugging this? i searched for 
context_bar in the server-error.log file and didn't find anything.