Class: PageContext

Inherits:
Radius::Context
  • Object
show all
Defined in:
app/models/page_context.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(page) ⇒ PageContext

Returns a new instance of PageContext.



5
6
7
8
9
10
11
12
# File 'app/models/page_context.rb', line 5

def initialize(page)
  super
  @page = page
  globals.page = @page
  page.tags.each do |name|
    define_tag(name) { |tag_binding| page.render_tag(name, tag_binding) }
  end
end

Instance Attribute Details

#pageObject (readonly)

Returns the value of attribute page.



3
4
5
# File 'app/models/page_context.rb', line 3

def page
  @page
end

Instance Method Details

#dupObject



14
15
16
17
18
19
# File 'app/models/page_context.rb', line 14

def dup
  rv = self.class.new(page)
  rv.globals = globals.dup
  rv.definitions = definitions.dup
  rv
end

#render_tag(name, attributes = {}, &block) ⇒ Object



21
22
23
24
25
26
27
28
29
30
# File 'app/models/page_context.rb', line 21

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
  render_error_message(e.message)
end