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-11-11 00:28:26 +01:00
|
|
|
before_filter :load_refs, :only => :index # load @branch, @tag & @ref
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2011-11-11 00:28:26 +01:00
|
|
|
def index
|
2011-10-08 23:36:38 +02:00
|
|
|
@repo = project.repo
|
2011-11-11 09:11:27 +01:00
|
|
|
limit, offset = (params[:limit] || 20), (params[:offset] || 0)
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2011-11-11 00:28:26 +01:00
|
|
|
@commits = if params[:path]
|
|
|
|
@repo.log(@ref, params[:path], :max_count => limit, :skip => offset)
|
|
|
|
else
|
|
|
|
@repo.commits(@ref, limit, offset)
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html # index.html.erb
|
|
|
|
format.js
|
2011-11-11 09:11:27 +01:00
|
|
|
format.atom { render :layout => false }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
@commit = project.repo.commits(params[:id]).first
|
2011-11-11 00:28:26 +01:00
|
|
|
@notes = project.commit_notes(@commit).fresh.limit(20)
|
|
|
|
@note = @project.build_commit_note(@commit)
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2011-11-11 09:11:27 +01:00
|
|
|
respond_to do |format|
|
2011-11-04 16:46:51 +01:00
|
|
|
format.html
|
2011-11-05 12:59:43 +01:00
|
|
|
format.js { respond_with_notes }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|