Project

General

Profile

« Previous | Next » 

Revision b8cc93d5

Added by Shimon Shtein about 8 years ago

Fixes #14559 - Added support for overriding base url for documentation

View differences:

app/helpers/application_helper.rb
(obj.new_record? && obj.class.count > 0) || (!obj.new_record? && obj.class.count > 1)
end
def documentation_button(section = "")
url = documentation_url section
def documentation_button(section = "", options = {})
url = documentation_url section, options
link_to(icon_text('help', _('Documentation'), :class => 'icon-white', :kind => 'pficon'),
url, :rel => 'external', :class => 'btn btn-info btn-docs', :target => '_blank')
end
......
end
end
def documentation_url(section = "")
def documentation_url(section = "", options = {})
root_url = options[:root_url] || "http://www.theforeman.org/manuals/#{SETTINGS[:version].short}/index.html#"
if section.empty?
"http://www.theforeman.org/documentation.html##{SETTINGS[:version].short}"
else
"http://www.theforeman.org/manuals/#{SETTINGS[:version].short}/index.html#" + section
root_url + section
end
end

Also available in: Unified diff