On Jun 14, 2011, at 11:42 AM, Francisco Costa wrote: > >> You can only do this for the default controller. You do it by specifying a >> list of the functions in the default controller: functions = [...]. > > I have that for the default controller, but in this case I need to > have it in a non-default controller > > It's not possible to have this feature?
It's not supported. If someone wants to implement it, I suggest allowing: functions = dict(...) (in addition to a list), where each dict entry would be of the form: controllername = [list of functions]. Be sure to write a set of unit tests.

