[EMAIL PROTECTED] wrote: > I found 4025 break the toolbox2.(toolbox2 gadgets works like sub- > controllers) > > Is it possible to update the "lib/base/Controller" class and > support the same syntax > > sub_one = MySubControllerOne > > instead of > > sub_one = tg.SubControllerProxy(MySubControllerOne)
The whole "SubControllerProxy" thing was just a suggestion, and is not implemented. The only thing that 4025 did was make sure that the entire controller tree is re-instantiated on every request. If the toolbox is breaking now, its probably because you were storing state on the controller somehow, which you can no longer do (and probably won't ever be able to do). You'll have to store such state on the appropriate stacked object proxy in Pylons, or find another way to do it. Best of luck - -- Jonathan LaCour http://cleverdevil.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears Trunk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears-trunk?hl=en -~----------~----~----~----~------~----~------~--~---
