Welcome to mirror list, hosted at ThFree Co, Russian Federation.

commits_controller.rb « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc3d34ba18453825d1a287dfd25896ec27beb55e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
require "base64"

class CommitsController < ApplicationController
  before_filter :project
  layout "project"

  # Authorize
  before_filter :add_project_abilities
  before_filter :authorize_read_project!
  before_filter :require_non_empty_project
  before_filter :load_refs, :only => :index # load @branch, @tag & @ref


  def index
    @repo = project.repo
    limit, offset = (params[:limit] || 20), (params[:offset] || 0)

    @commits = if params[:path]
                 @repo.log(@ref, params[:path], :max_count => limit, :skip => offset)
               else
                 @repo.commits(@ref, limit, offset)
               end

    respond_to do |format|
      format.html # index.html.erb
      format.js
      format.atom { render :layout => false }
    end
  end

  def show
    @commit = project.repo.commits(params[:id]).first
    @notes = project.commit_notes(@commit).fresh.limit(20)
    @note = @project.build_commit_note(@commit)

    respond_to do |format|
      format.html
      format.js { respond_with_notes }
    end
  end
end