Sha256: 4ffba47c7d5ea58d374407a64f43307dc571af51c5daa79e7958f9075f40bf92
Contents?: true
Size: 1.78 KB
Versions: 1
Compression:
Stored size: 1.78 KB
Contents
# # Copyright 2014 Red Hat, Inc. # # This software is licensed to you under the GNU General Public # License as published by the Free Software Foundation; either version # 2 of the License (GPLv2) or (at your option) any later version. # There is NO WARRANTY for this software, express or implied, # including the implied warranties of MERCHANTABILITY, # NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should # have received a copy of GPLv2 along with this software; if not, see # http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. module Katello module ErrataMailerHelper def content_host_errata_path(content_host) uuid = Katello::System.find(content_host).uuid "#{Setting[:foreman_url]}/content_hosts/#{uuid}/errata" end def content_view_environment_errata_path(content_view, environment) version = Katello::ContentViewEnvironment.find_by_content_view_id_and_environment_id(content_view.id, environment.id).content_view_version_id "#{Setting[:foreman_url]}/content_views/#{content_view.id}/versions/#{version}/errata" end def content_view_path(content_view) "#{Setting[:foreman_url]}/content_views/#{content_view.id}/versions" end def erratum_path(erratum) "#{Setting[:foreman_url]}/errata/#{erratum.uuid}/info" end def errata_count(host, errata_type) available = host.installable_errata.send(errata_type.to_sym).count applicable = host.applicable_errata.send(errata_type.to_sym).count - available "#{available} (#{applicable})" end def format_summary(summary) summary.blank? ? summary : summary.gsub(/\n\n/, '<p>').gsub(/\n/, ' ').html_safe end def host_count(hosts, errata_type) hosts.to_a.count { |host| host.installable_errata.send(errata_type.to_sym).any? } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
katello-2.2.2 | app/helpers/katello/errata_mailer_helper.rb |