2012-09-17 18:38:59 +02:00
|
|
|
# Controller for viewing a repository's file structure
|
2012-09-27 20:59:42 +02:00
|
|
|
class TreeController < ProjectResourceController
|
2012-09-20 19:55:14 +02:00
|
|
|
include ExtractsPath
|
2012-09-17 18:38:59 +02:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :authorize_read_project!
|
|
|
|
before_filter :authorize_code_access!
|
|
|
|
before_filter :require_non_empty_project
|
|
|
|
|
2012-09-17 20:24:31 +02:00
|
|
|
before_filter :assign_ref_vars
|
2012-09-17 18:38:59 +02:00
|
|
|
|
|
|
|
def show
|
2012-10-10 00:33:22 +02:00
|
|
|
@hex_path = Digest::SHA1.hexdigest(@path)
|
|
|
|
@logs_path = logs_file_project_ref_path(@project, @ref, @path)
|
2012-09-17 20:24:31 +02:00
|
|
|
|
2012-09-17 18:38:59 +02:00
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
# Disable cache so browser history works
|
|
|
|
format.js { no_cache_headers }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|