Class: PageContext
- Inherits:
-
Radius::Context
- Object
- Radius::Context
- PageContext
- Defined in:
- app/models/page_context.rb
Instance Attribute Summary collapse
-
#page ⇒ Object
readonly
Returns the value of attribute page.
Instance Method Summary collapse
- #dup ⇒ Object
-
#initialize(page) ⇒ PageContext
constructor
A new instance of PageContext.
- #render_tag(name, attributes = {}, &block) ⇒ Object
Constructor Details
#initialize(page) ⇒ PageContext
Returns a new instance of PageContext.
4 5 6 7 8 9 10 11 |
# File 'app/models/page_context.rb', line 4 def initialize(page) super @page = page globals.page = @page page..each do |name| define_tag(name) { |tag_binding| page.render_tag(name, tag_binding) } end end |
Instance Attribute Details
#page ⇒ Object (readonly)
Returns the value of attribute page.
2 3 4 |
# File 'app/models/page_context.rb', line 2 def page @page end |
Instance Method Details
#dup ⇒ Object
13 14 15 16 17 18 |
# File 'app/models/page_context.rb', line 13 def dup rv = self.class.new(page) rv.globals = globals.dup rv.definitions = definitions.dup rv end |
#render_tag(name, attributes = {}, &block) ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 |
# File 'app/models/page_context.rb', line 20 def render_tag(name, attributes = {}, &block) binding = @tag_binding_stack.last locals = binding ? binding.locals : globals set_process_variables(locals.page) super rescue Exception => e raise e if raise_errors? @tag_binding_stack.pop unless @tag_binding_stack.last == binding (e.) end |