class Footnotes::Notes::EnvNote

Public Class Methods

new(controller) click to toggle source
# File lib/sinatra-footnotes/notes/env_note.rb, line 6
def initialize(controller)
  @env = controller.request.env.dup
end

Public Instance Methods

content() click to toggle source
# File lib/sinatra-footnotes/notes/env_note.rb, line 10
def content
  env_data = @env.to_a.sort.unshift([:key, :value]).map do |k,v|
    case k
    when 'HTTP_COOKIE'
      # Replace HTTP_COOKIE for a link
      [k, '<a href="#" style="color:#009" onclick="Footnotes.hideAllAndToggle(\'cookies_debug_info\');return false;">See cookies on its tab</a>']
    else
      [k, escape(v.to_s)]
    end
  end

  # Create the env table
  mount_table(env_data)
end