summaryrefslogtreecommitdiff
path: root/app/controllers/tree_controller.rb
blob: e6313783d6ef5b1aa39dac8afd7c7c3cd1bd7ed1 (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
# 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