133c21b801
Update to Rails 2.3.1. (Actually, not quite. Doesn't look like 2.3.1 will be released today, but I REALLY want to push these bugfixes out.) Removed bundled Rack (Rails 2.3.1 comes bundled with Rack 1.0). Add config.action_view.cache_template_loading = true to production environment. Fix FastCGI bug (http://rubyforge.org/tracker/index.php?func=detail&aid=24191&group_id=186&atid=783). Fix WikiWords bug (http://rubyforge.org/pipermail/instiki-users/2009-February/001181.html).
35 lines
991 B
Ruby
35 lines
991 B
Ruby
module RailsGuides
|
|
module Helpers
|
|
def guide(name, url, options = {}, &block)
|
|
link = content_tag(:a, :href => url) { name }
|
|
result = content_tag(:dt, link)
|
|
|
|
if ticket = options[:ticket]
|
|
result << content_tag(:dd, lh(ticket), :class => 'ticket')
|
|
end
|
|
|
|
result << content_tag(:dd, capture(&block))
|
|
concat(result)
|
|
end
|
|
|
|
def lh(id, label = "Lighthouse Ticket")
|
|
url = "http://rails.lighthouseapp.com/projects/16213/tickets/#{id}"
|
|
content_tag(:a, label, :href => url)
|
|
end
|
|
|
|
def author(name, nick, image = 'credits_pic_blank.gif', &block)
|
|
image = "images/#{image}"
|
|
|
|
result = content_tag(:img, nil, :src => image, :class => 'left pic', :alt => name)
|
|
result << content_tag(:h3, name)
|
|
result << content_tag(:p, capture(&block))
|
|
concat content_tag(:div, result, :class => 'clearfix', :id => nick)
|
|
end
|
|
|
|
def code(&block)
|
|
c = capture(&block)
|
|
content_tag(:code, c)
|
|
end
|
|
end
|
|
end
|