2012-03-31 00:37:54 +01:00
|
|
|
# -*- encoding : utf-8 -*-
|
|
|
|
class PagesController < ApplicationController
|
|
|
|
# before_filter :authenticate_user!, :except => [:show, :main, :forbidden]
|
|
|
|
# load_and_authorize_resource
|
|
|
|
|
|
|
|
def root
|
2012-05-11 18:58:51 +01:00
|
|
|
render 'pages/tour/abf-tour-project-description-1', :layout => 'tour'
|
|
|
|
end
|
|
|
|
|
|
|
|
def tour_inside
|
2012-05-15 16:30:59 +01:00
|
|
|
@entries = case params[:id]
|
2012-09-04 15:30:02 +01:00
|
|
|
when 'builds'
|
2012-05-15 16:30:59 +01:00
|
|
|
%w(repo builds monitoring)
|
|
|
|
when 'sources'
|
|
|
|
%w(source history annotation edit)
|
2012-09-04 15:30:02 +01:00
|
|
|
when 'projects'
|
2012-05-15 16:30:59 +01:00
|
|
|
%w(control git tracker)
|
|
|
|
end
|
|
|
|
render "pages/tour/tour-inside", :layout => 'tour'
|
2012-03-31 00:37:54 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def forbidden
|
|
|
|
end
|
2012-03-31 14:18:22 +01:00
|
|
|
|
|
|
|
def tos
|
|
|
|
end
|
2012-07-20 17:06:31 +01:00
|
|
|
|
2012-03-31 00:37:54 +01:00
|
|
|
end
|