mirror of
https://github.com/meineerde/redmine.git
synced 2026-03-12 12:13:08 +00:00
git-svn-id: http://redmine.rubyforge.org/svn/branches/work@104 e93f8b46-1217-0410-a6f0-8f06a7374b81
56 lines
1.5 KiB
Ruby
56 lines
1.5 KiB
Ruby
class RepositoriesController < ApplicationController
|
|
layout 'base'
|
|
before_filter :find_project, :authorize
|
|
|
|
def show
|
|
@entries = @repository.scm.entries('')
|
|
show_error and return unless @entries
|
|
@latest_revision = @entries.revisions.latest
|
|
end
|
|
|
|
def browse
|
|
@entries = @repository.scm.entries(@path, @rev)
|
|
show_error and return unless @entries
|
|
end
|
|
|
|
def revisions
|
|
@entry = @repository.scm.entry(@path, @rev)
|
|
@revisions = @repository.scm.revisions(@path, @rev)
|
|
show_error and return unless @entry && @revisions
|
|
end
|
|
|
|
def entry
|
|
if 'raw' == params[:format]
|
|
content = @repository.scm.cat(@path, @rev)
|
|
show_error and return unless content
|
|
send_data content, :filename => @path.split('/').last
|
|
end
|
|
end
|
|
|
|
def revision
|
|
@revisions = @repository.scm.revisions '', @rev, @rev, :with_paths => true
|
|
show_error and return unless @revisions
|
|
@revision = @revisions.first
|
|
end
|
|
|
|
def diff
|
|
@rev_to = params[:rev_to] || (@rev-1)
|
|
@diff = @repository.scm.diff(params[:path], @rev, @rev_to)
|
|
show_error and return unless @diff
|
|
end
|
|
|
|
private
|
|
def find_project
|
|
@project = Project.find(params[:id])
|
|
@repository = @project.repository
|
|
@path = params[:path].squeeze('/').gsub(/^\//, '') if params[:path]
|
|
@path ||= ''
|
|
@rev = params[:rev].to_i if params[:rev] and params[:rev].to_i > 0
|
|
end
|
|
|
|
def show_error
|
|
flash.now[:notice] = l(:notice_scm_error)
|
|
render :nothing => true, :layout => true
|
|
end
|
|
end
|