Sha256: 38acf39ddf2312c550a040568b52b00c27872d27d4fbc5db90b2a0578caa284e

Contents?: true

Size: 1.43 KB

Versions: 2

Compression:

Stored size: 1.43 KB

Contents

module Shinmun

  module Helpers

    Kontrol::Template.send(:include, self)

    def post_path(post)
      "/#{post.year}/#{post.month}/#{post.name}"
    end    

    def archive_path(year, month)
      "/#{year}/#{month}"
    end

    # Render a link to a post
    def post_link(post)
      link_to post.title, post_path(post)
    end

    # Render a link to an archive page.
    def archive_link(year, month)
      link_to "#{Date::MONTHNAMES[month]} #{year}", archive_path(year, month)
    end

    # Render a date or time in a nice human readable format.
    def human_date(time)
      "%s %d, %d" % [Date::MONTHNAMES[time.month], time.day, time.year]
    end

    # Render a date or time in rfc822 format.
    def rfc822(time)
      time.strftime("%a, %d %b %Y %H:%M:%S %z")
    end
    
    # Render a link for the navigation bar.
    def navi_link(text, path)
      active = request.path_info == path

      if path.match(/categories\/(.*)/) 
        category = $1
        if request.path.match(/(\d+)\/(\d+)\/(.*)/)
          post = posts_by_date[$1.to_i][$2.to_i][$3]
          active ||= category == urlify(post.category) if post
        end
      end
      
      link_to text, path, :class => active ? 'active' : nil
    end

    def html_escape(s)
      s.to_s.gsub(/>/, '&gt;').gsub(/</n, '&lt;')
    end

    def diff_line_class(line)
      case line[0, 1]
      when '+' then 'added'
      when '-' then 'deleted'
      end
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
shinmun-1.0.3 lib/shinmun/helpers.rb
shinmun-1.0.2 lib/shinmun/helpers.rb