How can I tell akelos to show me all defined or all global variables when I'm showing a particular view or template? I use this a lot for debugging, etc., and find it to be very useful. It's very easy in a non-framework environment, but in akelos, it's just not clear to me.
CommentAuthorbermi
Allowing access to globals from the view is scary, but if you need to do this, set in your config.php
define('AK_TEMPLATE_SECURITY_CHECK', false);
and your views will reside on the "non-framework environment" ;)