module CommitsHelper
  def diff_line(line, line_new = 0, line_old = 0)
    full_line = html_escape(line.gsub(/\n/, ''))
    color = if line[0] == "+"
              full_line = " #{line_new} " + full_line
              "#DFD"
            elsif line[0] == "-"
              full_line = "#{line_old}  " + full_line
              "#FDD"
            else
              full_line = "#{line_old}#{line_new} " + full_line
              "none"
            end
    raw "
#{full_line}
"
  end
  def more_commits_link
    offset = params[:offset] || 0
    limit = params[:limit] || 100
    link_to "More", project_commits_path(@project, :offset =>  offset.to_i + limit.to_i, :limit => limit),
      :remote => true, :class => "lite_button vm", :style => "text-align:center; width:930px; ", :id => "more-commits-link"
  end
end