Jay Levitt wrote:
> I understand the intent, but I wonder if there's a less intrusive way to 
> accomplish it, while still allowing outer tags to rescue their own 
> exceptions.  What if that rescue were executed only on the outermost 
> tags?  Would that break anything?  

I've submitted a patch that accomplishes this - ticket #177.

> 
> OT but related: I tried reopening PageContext in my own plugin to make 
> this modification

Solved: Rails loads models automagically through const_missing the first 
time they're referenced.  Plugins load before models, so if you define 
the class in the plugin, it's no longer missing, and the model doesn't 
get loaded!  If I wanted to reopen PageContext in a plugin, I'd need to 
require "page_context" at the top so it gets loaded first.

Jay

_______________________________________________
Radiant mailing list
Radiant@lists.radiantcms.org
http://lists.radiantcms.org/mailman/listinfo/radiant

Reply via email to