scm: code clean up repositories controller.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5875 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
782f7ca3bf
commit
5543ec5f5a
@ -82,7 +82,10 @@ class RepositoriesController < ApplicationController
|
|||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
@repository.destroy
|
@repository.destroy
|
||||||
redirect_to :controller => 'projects', :action => 'settings', :id => @project, :tab => 'repository'
|
redirect_to :controller => 'projects',
|
||||||
|
:action => 'settings',
|
||||||
|
:id => @project,
|
||||||
|
:tab => 'repository'
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
@ -204,7 +207,8 @@ class RepositoriesController < ApplicationController
|
|||||||
User.current.pref[:diff_type] = @diff_type
|
User.current.pref[:diff_type] = @diff_type
|
||||||
User.current.preference.save
|
User.current.preference.save
|
||||||
end
|
end
|
||||||
@cache_key = "repositories/diff/#{@repository.id}/" + Digest::MD5.hexdigest("#{@path}-#{@rev}-#{@rev_to}-#{@diff_type}")
|
@cache_key = "repositories/diff/#{@repository.id}/" +
|
||||||
|
Digest::MD5.hexdigest("#{@path}-#{@rev}-#{@rev_to}-#{@diff_type}")
|
||||||
unless read_fragment(@cache_key)
|
unless read_fragment(@cache_key)
|
||||||
@diff = @repository.diff(@path, @rev, @rev_to)
|
@diff = @repository.diff(@path, @rev, @rev_to)
|
||||||
show_error_not_found unless @diff
|
show_error_not_found unless @diff
|
||||||
|
Loading…
x
Reference in New Issue
Block a user