Class: Precious::Views::Page

Inherits:
Layout
  • Object
show all
Defined in:
lib/gollum/frontend/views/page.rb

Instance Attribute Summary collapse

Attributes inherited from Layout

#name

Instance Method Summary collapse

Methods inherited from Layout

#escaped_name

Instance Attribute Details

#contentObject (readonly)

Returns the value of attribute content.



4
5
6
# File 'lib/gollum/frontend/views/page.rb', line 4

def content
  @content
end

Returns the value of attribute footer.



4
5
6
# File 'lib/gollum/frontend/views/page.rb', line 4

def footer
  @footer
end

#pageObject (readonly)

Returns the value of attribute page.



4
5
6
# File 'lib/gollum/frontend/views/page.rb', line 4

def page
  @page
end

Instance Method Details

#authorObject



14
15
16
# File 'lib/gollum/frontend/views/page.rb', line 14

def author
  @page.version.author.name
end

#dateObject



18
19
20
# File 'lib/gollum/frontend/views/page.rb', line 18

def date
  @page.version.authored_date.strftime("%Y-%m-%d %H:%M:%S")
end

#editableObject



22
23
24
# File 'lib/gollum/frontend/views/page.rb', line 22

def editable
  @editable
end


31
32
33
# File 'lib/gollum/frontend/views/page.rb', line 31

def footer_content
  has_footer && @footer.formatted_data
end


35
36
37
# File 'lib/gollum/frontend/views/page.rb', line 35

def footer_format
  has_footer && @footer.format.to_s
end

#formatObject



10
11
12
# File 'lib/gollum/frontend/views/page.rb', line 10

def format
  @page.format.to_s
end


26
27
28
29
# File 'lib/gollum/frontend/views/page.rb', line 26

def has_footer
  @footer = (@page.footer || false) if @footer.nil?
  !!@footer
end

#has_sidebarObject



39
40
41
42
# File 'lib/gollum/frontend/views/page.rb', line 39

def has_sidebar
  @sidebar = (@page.sidebar || false) if @sidebar.nil?
  !!@sidebar
end


44
45
46
# File 'lib/gollum/frontend/views/page.rb', line 44

def sidebar_content
  has_sidebar && @sidebar.formatted_data
end


48
49
50
# File 'lib/gollum/frontend/views/page.rb', line 48

def sidebar_format
  has_sidebar && @sidebar.format.to_s
end

#titleObject



6
7
8
# File 'lib/gollum/frontend/views/page.rb', line 6

def title
  @page.title
end