39 lines
1.0 KiB
Ruby
39 lines
1.0 KiB
Ruby
module Apache
|
|
# Methods to handle directory settings
|
|
module Directories
|
|
# Create an Options directive
|
|
#
|
|
# The options passed into this method are Apachified:
|
|
# options :exec_cgi, :follow_sym_links #=> Options ExecCGI FollowSymLinks
|
|
def options(*opt)
|
|
create_options_list('Options', *opt)
|
|
end
|
|
|
|
# Create an IndexOptions directive
|
|
#
|
|
# The options passed into this method are Apachified:
|
|
# index_options :fancy_indexing, :suppress_description #=> IndexOptions FancyIndexing SuppressDescription
|
|
def index_options(*opt)
|
|
create_options_list('IndexOptions', *opt)
|
|
end
|
|
|
|
private
|
|
def create_options_list(tag, *opt)
|
|
opt = opt.collect do |o|
|
|
case o
|
|
when Symbol
|
|
if o.to_s[0..3] == 'not_'
|
|
"-#{apachify(o.to_s[4..-1])}"
|
|
else
|
|
apachify(o)
|
|
end
|
|
else
|
|
apachify(o)
|
|
end
|
|
end
|
|
|
|
self << "#{tag} #{opt * " "}"
|
|
end
|
|
end
|
|
end
|