summaryrefslogtreecommitdiff
path: root/app/controllers/tree_controller.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2012-09-27 09:56:02 +0300
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2012-09-27 09:56:02 +0300
commit19c58becc00982b718f0e11b74129ef2ccce2454 (patch)
treeee7eb18b8e59074bc56ea06fd30ae241beed4a2f /app/controllers/tree_controller.rb
parent0439387be00bfb862b4454000f805f11fb8cc389 (diff)
parent2c8d3c33ff64ac6af5daf125a2f9ef917e55bcfc (diff)
downloadgitlab-ce-19c58becc00982b718f0e11b74129ef2ccce2454.tar.gz
Merge branch 'tsigo-routing_overhaul'
Diffstat (limited to 'app/controllers/tree_controller.rb')
-rw-r--r--app/controllers/tree_controller.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/controllers/tree_controller.rb b/app/controllers/tree_controller.rb
new file mode 100644
index 00000000000..e6313783d6e
--- /dev/null
+++ b/app/controllers/tree_controller.rb
@@ -0,0 +1,29 @@
+# Controller for viewing a repository's file structure
+class TreeController < ApplicationController
+ include ExtractsPath
+
+ layout "project"
+
+ before_filter :project
+
+ # Authorize
+ before_filter :add_project_abilities
+ before_filter :authorize_read_project!
+ before_filter :authorize_code_access!
+ before_filter :require_non_empty_project
+
+ before_filter :assign_ref_vars
+
+ def show
+ @hex_path = Digest::SHA1.hexdigest(@path)
+
+ @history_path = project_tree_path(@project, @id)
+ @logs_path = logs_file_project_ref_path(@project, @ref, @path)
+
+ respond_to do |format|
+ format.html
+ # Disable cache so browser history works
+ format.js { no_cache_headers }
+ end
+ end
+end