Sha256: 059e3ec1aeff86d5a9d7f28f22a8bba8fbdd170ac02815b6cec5773fc0418a29
Contents?: true
Size: 1.77 KB
Versions: 1
Compression:
Stored size: 1.77 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. # a container represents a product or content view module Katello module ContentSearch class ContainerSearch < Search attr_accessor :comparable def container_hover_html(container, env = nil, view = nil, details = false) render_to_string :partial => 'katello/content_search/container_hover', :locals => {:container => container, :env => env, :view => view, :details => details} end def repo_hover_html(repo, details = false) render_to_string :partial => 'katello/content_search/repo_hover', :locals => {:repo => repo, :details => details} end def env_ids SearchUtils.env_ids end def readable_env_ids(organization) ids = [] if Product.readable? ids << organization.library.id if organization.library.readable? end ids += KTEnvironment.readable.pluck("#{Katello::KTEnvironment.table_name}.id") ids.uniq end def search_envs SearchUtils.search_envs(mode) end #retrieve the list of rows but as values in a hash, with the object id as key def row_object_hash Hash[self.rows.collect { |r| [r.object_id, r] }] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
katello-2.2.2 | app/lib/katello/content_search/container_search.rb |