2010-05-05 14:44:20 +00:00
|
|
|
module Apache
|
|
|
|
module Directories
|
|
|
|
def options(*opt)
|
2010-05-05 16:25:07 +00:00
|
|
|
self << "Options #{apachify(opt) * " "}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def index_options(*opt)
|
|
|
|
self << "IndexOptions #{apachify(opt) * " "}"
|
2010-05-05 14:44:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|