2011-10-08 23:36:38 +02:00
|
|
|
require "base64"
|
|
|
|
|
|
|
|
class CommitsController < ApplicationController
|
|
|
|
before_filter :project
|
2011-11-01 10:22:16 +01:00
|
|
|
layout "project"
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :add_project_abilities
|
|
|
|
before_filter :authorize_read_project!
|
2011-10-15 17:51:58 +02:00
|
|
|
before_filter :require_non_empty_project
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
def index
|
2011-10-14 18:30:31 +02:00
|
|
|
load_refs # load @branch, @tag & @ref
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
@repo = project.repo
|
|
|
|
|
|
|
|
if params[:path]
|
2011-10-14 18:30:31 +02:00
|
|
|
@commits = @repo.log(@ref, params[:path], :max_count => params[:limit] || 100, :skip => params[:offset] || 0)
|
2011-10-08 23:36:38 +02:00
|
|
|
else
|
2011-10-14 18:30:31 +02:00
|
|
|
@commits = @repo.commits(@ref, params[:limit] || 100, params[:offset] || 0)
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html # index.html.erb
|
|
|
|
format.js
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
@commit = project.repo.commits(params[:id]).first
|
2011-11-04 16:46:51 +01:00
|
|
|
@notes = project.notes.where(:noteable_id => @commit.id, :noteable_type => "Commit").order("created_at DESC").limit(20)
|
2011-10-08 23:36:38 +02:00
|
|
|
@note = @project.notes.new(:noteable_id => @commit.id, :noteable_type => "Commit")
|
|
|
|
|
2011-11-04 16:46:51 +01:00
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.js do
|
|
|
|
@notes = @notes.where("id > ?", params[:last_id]) if params[:last_id]
|
|
|
|
@notes = @notes.where("id < ?", params[:first_id]) if params[:first_id]
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|