katello 2.4.0.rc3 → 2.4.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8647c42c72655d45ce3cf7f9bda72dc62c401c48
4
+ data.tar.gz: c6709516499c7a7c96844293f54c351c43ff4824
5
+ SHA512:
6
+ metadata.gz: 8936bc4233c21f4c3bbc180a2d97bda511cbd4fd217808a1f1fffe3b6fcba9ad63eab895168932a2520b91a56bce3d12e9e4809b8ba43e09f21ec00d1e6a4339
7
+ data.tar.gz: 44fccd68dee21eb6cc317de904c674bf2dd7e766ea3e0bb16b24624e66c3f8eb71b111f206f3fc29dd49f9e2c21b67bb11f94ac04cb0533ef90a2b63f20712b6
@@ -55,8 +55,7 @@ module Katello
55
55
 
56
56
  def index_relation
57
57
  query = Repository.readable
58
- query = query.joins(:product).where("#{Product.table_name}.organization_id" => @organization) if @organization
59
- query = query.where(:product_id => @product.id) if @product
58
+ query = index_relation_product(query)
60
59
  query = query.where(:content_type => params[:content_type]) if params[:content_type]
61
60
  query = query.where(:name => params[:name]) if params[:name]
62
61
 
@@ -74,15 +73,29 @@ module Katello
74
73
  .where("#{PuppetModule.table_name}.id" => PuppetModule.with_identifiers(params[:puppet_module_id]))
75
74
  end
76
75
 
76
+ query = index_relation_content_view(query)
77
+ query = index_relation_environment(query)
78
+
79
+ query
80
+ end
81
+
82
+ def index_relation_product(query)
83
+ query = query.joins(:product).where("#{Product.table_name}.organization_id" => @organization) if @organization
84
+ query = query.where(:product_id => @product.id) if @product
85
+ query
86
+ end
87
+
88
+ def index_relation_content_view(query)
77
89
  if params[:content_view_version_id]
78
90
  query = query.where(:content_view_version_id => params[:content_view_version_id])
79
91
  query = Repository.where(:id => query.map(&:library_instance_id)) if params[:library]
80
- end
81
-
82
- if params[:content_view_id]
92
+ elsif params[:content_view_id]
83
93
  query = filter_by_content_view(query, params[:content_view_id], params[:environment_id], params[:available_for] == 'content_view')
84
94
  end
95
+ query
96
+ end
85
97
 
98
+ def index_relation_environment(query)
86
99
  if params[:environment_id] && !params[:library]
87
100
  query = query.where(:environment_id => params[:environment_id])
88
101
  elsif params[:environment_id] && params[:library]
@@ -93,7 +106,6 @@ module Katello
93
106
  elsif (params[:library] && !params[:environment_id]) || (params[:environment_id].blank? && params[:content_view_version_id].blank? && params[:content_view_id].blank?)
94
107
  query = query.where(:content_view_version_id => @organization.default_content_view.versions.first.id)
95
108
  end
96
-
97
109
  query
98
110
  end
99
111
 
@@ -22,14 +22,40 @@ module Katello
22
22
 
23
23
  api_root_routes.collect! { |r| { :rel => r["/katello/api/".size..-2], :href => r } }
24
24
 
25
- # provide some fake paths that does not exist (but rhsm is checking it's existance)
26
- api_root_routes << { :href => '/katello/api/packages/', :rel => 'packages' }
27
- api_root_routes << { :href => '/katello/api/status/', :rel => 'status' }
28
- api_root_routes << { :href => '/katello/api/guestids', :rel => 'guestids'}
29
- api_root_routes << { :href => '/katello/api/content_overrides', :rel => 'content_overrides'}
30
- api_root_routes << { :href => '/katello/api/available_releases', :rel => 'available_releases'}
31
-
32
25
  respond_for_index :collection => api_root_routes
33
26
  end
27
+
28
+ def rhsm_resource_list
29
+ # The RHSM resource list is required to interact with RHSM on the client.
30
+ # When requested, it will return a list of the resources (href & rel) defined by katello
31
+ # for the /rhsm namespace. The rel values are used by RHSM to determine if the server
32
+ # supports a particular resource (e.g. environments, guestids, organizations..etc)
33
+
34
+ all_routes = Engine.routes.routes.collect { |r| r.path.spec.to_s }
35
+
36
+ api_routes = all_routes.select do |path|
37
+ # obtain only the rhsm routes
38
+ path =~ %r{^/rhsm/.+$}
39
+ end
40
+
41
+ api_routes = api_routes.collect do |path|
42
+ # drop the trailing :format
43
+ path = path.sub("(.:format)", "")
44
+
45
+ # drop the trailing ids
46
+ path_elements = path.split("/")
47
+ if path_elements.last.start_with?(':') && path_elements.last.end_with?('id')
48
+ path_elements.delete_at(-1)
49
+ path_elements.join('/')
50
+ else
51
+ path
52
+ end
53
+ end
54
+
55
+ api_routes.uniq!
56
+ api_routes.collect! { |r| { :rel => r.split('/').last, :href => r } }
57
+
58
+ respond_for_index :collection => api_routes, :template => 'resource_list'
59
+ end
34
60
  end
35
61
  end
@@ -15,20 +15,21 @@ module Actions
15
15
  private
16
16
 
17
17
  def update_url(provider, base_url)
18
+ current_base_url = provider.repository_url
18
19
  provider.update_attributes!(:repository_url => base_url)
19
20
 
20
21
  if provider.redhat_provider?
21
22
  provider.products.enabled.each do |product|
22
- update_repository_urls(product, base_url)
23
+ update_repository_urls(product, current_base_url, base_url)
23
24
  end
24
25
  end
25
26
  end
26
27
 
27
- def update_repository_urls(product, base_url)
28
+ def update_repository_urls(product, current_base_url, new_base_url)
28
29
  product.repositories.each do |repository|
29
30
  next unless repository.url
30
- uri = URI.parse(repository.url)
31
- url = "#{base_url}#{uri.path}"
31
+ path = repository.url.split(current_base_url)[1]
32
+ url = "#{new_base_url}#{path}"
32
33
  plan_action(::Actions::Katello::Repository::Update, repository, :url => url)
33
34
  end
34
35
  end
@@ -6,13 +6,13 @@ module Actions
6
6
  action_subject repository
7
7
  repository.update_attributes!(repo_params)
8
8
 
9
- if (SETTINGS[:katello][:use_cp] && SETTINGS[:katello][:use_pulp]) && repository.library_instance?
9
+ if update_content?(repository)
10
10
  plan_action(::Actions::Candlepin::Product::ContentUpdate,
11
11
  :content_id => repository.content_id,
12
- :name => repository.name,
12
+ :name => repository.content.name,
13
13
  :content_url => ::Katello::Glue::Pulp::Repos.custom_content_path(repository.product, repository.label),
14
14
  :gpg_key_url => repository.yum_gpg_key_url,
15
- :label => repository.custom_content_label,
15
+ :label => repository.content.label,
16
16
  :type => repository.content_type)
17
17
  end
18
18
 
@@ -49,6 +49,15 @@ module Actions
49
49
  end
50
50
  distributor.type_id
51
51
  end
52
+
53
+ private
54
+
55
+ def update_content?(repository)
56
+ SETTINGS[:katello][:use_cp] &&
57
+ SETTINGS[:katello][:use_pulp] &&
58
+ repository.library_instance? &&
59
+ !repository.product.redhat?
60
+ end
52
61
  end
53
62
  end
54
63
  end
@@ -80,6 +80,14 @@ module Actions
80
80
  end
81
81
 
82
82
  def cancel!
83
+ cancel
84
+ self.external_task = poll_external_task
85
+ # We suspend the action and the polling will take care of finding
86
+ # out if the cancelling was successful
87
+ suspend unless done?
88
+ end
89
+
90
+ def cancel
83
91
  output[:pulp_tasks].each do |pulp_task|
84
92
  task_resource.cancel(pulp_task['task_id'])
85
93
  if pulp_task['spawned_tasks']
@@ -87,10 +95,6 @@ module Actions
87
95
  pulp_task['spawned_tasks'].each { |spawned| task_resource.cancel(spawned['task_id']) }
88
96
  end
89
97
  end
90
- self.external_task = poll_external_task
91
- # We suspend the action and the polling will take care of finding
92
- # out if the cancelling was successful
93
- suspend unless done?
94
98
  end
95
99
 
96
100
  private
@@ -19,12 +19,14 @@ module Actions
19
19
  pulp_state = output[:pulp_tasks][0][:state]
20
20
 
21
21
  if pulp_state == 'waiting'
22
- fail _("Host did not respond within %s seconds. Is katello-agent installed and goferd running on the Host?") % accept_timeout
22
+ cancel
23
+ fail _("Host did not respond within %s seconds. The task has been cancelled. Is katello-agent installed and goferd running on the Host?") % accept_timeout
23
24
  elsif output[:client_accepted].nil?
24
25
  output[:client_accepted] = Time.now.to_s
25
26
  schedule_timeout(finish_timeout)
26
27
  elsif pulp_state == 'running'
27
- fail _("Host did not finish content action in %s seconds") % finish_timeout
28
+ cancel
29
+ fail _("Host did not finish content action in %s seconds. The task has been cancelled.") % finish_timeout
28
30
  end
29
31
  end
30
32
 
@@ -20,7 +20,8 @@ module Actions
20
20
  pulp_task = external_task.first
21
21
 
22
22
  if pulp_task[:state] == 'waiting'
23
- fail _("Host did not respond within %s seconds. Is katello-agent installed and goferd running on the Host?") % accept_timeout
23
+ cancel
24
+ fail _("Host did not respond within %s seconds. Sync has been cancelled. Is katello-agent installed and goferd running on the Host?") % accept_timeout
24
25
  elsif pulp_task[:state] == 'unknown'
25
26
  fail _("Unknown Status during sync. Is katello-agent installed and goferd running on the Host?")
26
27
  else
@@ -28,7 +29,8 @@ module Actions
28
29
  output[:sync_task_is_accepted] ||= true
29
30
  schedule_timeout(finish_timeout)
30
31
  else
31
- fail _("Host/Node did not finish sync within %s seconds. Is katello-agent installed and goferd running on the Host?") % finish_timeout
32
+ cancel
33
+ fail _("Host/Node did not finish sync within %s seconds. Sync has been cancelled. Is katello-agent installed and goferd running on the Host?") % finish_timeout
32
34
  end
33
35
  end
34
36
  end
@@ -76,5 +76,5 @@ module Katello
76
76
  end
77
77
 
78
78
  class ::Hostgroup::Jail < Safemode::Jail
79
- allow :content_source, :rhsm_organization_label
79
+ allow :content_source, :rhsm_organization_label, :subscription_manager_configuration_url
80
80
  end
@@ -9,7 +9,7 @@ module Katello
9
9
  include Util::ThreadSession::UserModel
10
10
 
11
11
  has_many :task_statuses, :dependent => :destroy, :class_name => "Katello::TaskStatus"
12
- has_many :activation_keys, :dependent => :destroy, :class_name => "Katello::ActivationKey"
12
+ has_many :activation_keys, :dependent => :nullify, :class_name => "Katello::ActivationKey"
13
13
 
14
14
  def self.remote_user
15
15
  SETTINGS[:katello][:pulp][:default_login]
@@ -55,6 +55,7 @@ module Katello
55
55
  end
56
56
 
57
57
  def unsubscribe(pool_id)
58
+ fail _("Subscription id is nil.") unless pool_id
58
59
  pool = Katello::Pool.find(pool_id)
59
60
  subscription = pool.subscription
60
61
  remove_custom_product(subscription.product_id) unless subscription.redhat?
@@ -122,6 +122,7 @@ module Katello
122
122
 
123
123
  def unsubscribe(entitlement)
124
124
  Rails.logger.debug "Unsubscribing from entitlement '#{entitlement}' for : #{name}"
125
+ fail _("Subscription id is nil.") unless entitlement
125
126
  Resources::Candlepin::Consumer.remove_entitlement self.uuid, entitlement
126
127
  #ents = self.entitlements.collect {|ent| ent["id"] if ent["pool"]["id"] == pool}.compact
127
128
  #raise ArgumentError, "Not subscribed to the pool #{pool}" if ents.count < 1
@@ -265,7 +265,7 @@ module Katello
265
265
  product_in_katello_ids.concat(adjusted_eng_products.map { |p| p["id"] })
266
266
 
267
267
  marketing_product = Katello::Product.find_by_cp_id(marketing_product_id)
268
- marketing_product.destroy if marketing_product
268
+ marketing_product.destroy if marketing_product && marketing_product.redhat?
269
269
  end
270
270
 
271
271
  product_to_remove_ids = (product_in_katello_ids - products_in_candlepin_ids).uniq
@@ -19,13 +19,21 @@ end %>
19
19
  :class => 'form-control', :name => cv_select_name
20
20
  end %>
21
21
 
22
- <% data_url = @hostgroup ? environment_selected_hostgroups_path : hostgroup_or_environment_selected_hosts_path %>
23
- <%= select_f f, :environment_id, Environment.all, :id, :to_label, {:include_blank => blank_or_inherit_f(f, :environment)},
24
- {:label => _("Puppet Environment"), :onchange => 'update_puppetclasses(this);', 'data-url'=> data_url,
25
- 'data-content_puppet_match' => (@host || @hostgroup).new_record? || (@host || @hostgroup).content_and_puppet_match?,
26
- :help_inline => %(<a id="reset_puppet_environment">#{_("Reset Puppet Environment to match selected Content View")}</a>).html_safe
27
- } %>
22
+ <% environment_attrs = { :'data-content_puppet_match' => ((@host || @hostgroup).new_record? || (@host || @hostgroup).content_and_puppet_match?),
23
+ :help_inline => %(<a id="reset_puppet_environment">#{_("Reset Puppet Environment to match selected Content View")}</a>).html_safe } %>
28
24
 
25
+ <% if @host %>
26
+ <%= select_f f, :environment_id, Environment.with_taxonomy_scope_override(@location,@organization).order(:name), :id, :to_label, { :include_blank => true,
27
+ :disable_button => _(HostsAndHostgroupsHelper::INHERIT_TEXT),
28
+ :disable_button_enabled => inherited_by_default?(:environment_id, @host || @hostgroup),
29
+ :user_set => params[:host] && params[:host][:environment_id]
30
+ },
31
+ {:onchange => 'update_puppetclasses(this)', :'data-url' => hostgroup_or_environment_selected_hosts_path,
32
+ :'data-host-id' => @host.id, :help_inline => :indicator }.merge(environment_attrs) %>
33
+ <% else %>
34
+ <%= select_f f, :environment_id, Environment.all, :id, :to_label, {:include_blank => blank_or_inherit_f(f, :environment)},
35
+ {:label => _("Environment"), :onchange => 'update_puppetclasses(this);', :"data-url" => environment_selected_hostgroups_path}.merge(environment_attrs) %>
36
+ <%end %>
29
37
 
30
38
  <% proxies = SmartProxy.with_content.unscoped.with_taxonomy_scope(@location,@organization,:path_ids) %>
31
39
  <% if proxies.count > 0 %>
@@ -7,7 +7,7 @@ end
7
7
 
8
8
  Katello::Engine.routes.draw do
9
9
  scope :api, :module => :api do
10
- match '/rhsm' => 'v2/root#resource_list', :via => :get
10
+ match '/rhsm' => 'v2/root#rhsm_resource_list', :via => :get
11
11
 
12
12
  scope :path => :rhsm, :module => :rhsm, :as => :rhsm do
13
13
  # subscription-manager support
@@ -1,6 +1,21 @@
1
+ module Katello
2
+ class WhitelistConstraint
3
+ PATHS = [/^\/api\/v2\/organizations\/\S+\/parameters/]
4
+
5
+ def matches?(request)
6
+ PATHS.map { |path| request.env["REQUEST_PATH"].match(path) }.any? ? false : true
7
+ end
8
+ end
9
+ end
10
+
1
11
  Foreman::Application.routes.draw do
2
- match "/api/v2/organizations/*all", to: proc { [404, {}, ['']] }, :via => :get
3
- match "/api/v1/organizations/:id", via: :delete, to: proc { [404, {}, ['']] }
12
+ override_message = '{"message": "Route forbidden by Katello, check katello/config/routes/overrides"}'
13
+
14
+ match "/api/v2/organizations/*all", :to => proc { [404, {}, [override_message]] },
15
+ :via => :get,
16
+ :constraints => Katello::WhitelistConstraint.new
17
+
18
+ match "/api/v1/organizations/:id", via: :delete, to: proc { [404, {}, [override_message]] }
4
19
 
5
20
  resources :operatingsystems, :only => [] do
6
21
  get 'available_kickstart_repo', :on => :member
@@ -1,6 +1,10 @@
1
1
  class DisownForemanTemplates < ActiveRecord::Migration
2
2
  class FakeConfigTemplate < ActiveRecord::Base
3
- self.table_name = 'config_templates'
3
+ if ActiveRecord::Base.connection.table_exists?('config_templates')
4
+ self.table_name = 'config_templates'
5
+ else
6
+ self.table_name = 'templates'
7
+ end
4
8
  end
5
9
 
6
10
  def up
@@ -43,7 +43,7 @@ angular.module('Bastion.content-views').controller('ContentViewPuppetModuleVersi
43
43
  contentViewPuppetModule = new ContentViewPuppetModule(contentViewPuppetModuleData);
44
44
 
45
45
  if ($scope.$stateParams.moduleId) {
46
- contentViewPuppetModule.uuid = $scope.$stateParams.moduleId;
46
+ contentViewPuppetModule.id = $scope.$stateParams.moduleId;
47
47
  contentViewPuppetModule.$update(success, error);
48
48
  } else {
49
49
  contentViewPuppetModule.$save(success, error);
@@ -49,7 +49,7 @@ angular.module('Bastion.subscriptions').service('SubscriptionsHelper',
49
49
 
50
50
  selected = [];
51
51
  angular.forEach(table.getSelected(), function (subscription) {
52
- selected.push({"id": subscription.id});
52
+ selected.push({"id": subscription.cp_id});
53
53
  });
54
54
  return selected;
55
55
  };
@@ -1,3 +1,3 @@
1
1
  module Katello
2
- VERSION = "2.4.0.rc3"
2
+ VERSION = "2.4.0"
3
3
  end
metadata CHANGED
@@ -1,384 +1,345 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: katello
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0.rc3
5
- prerelease: 6
4
+ version: 2.4.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - N/A
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2015-11-23 00:00:00.000000000 Z
11
+ date: 2015-12-23 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rails
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: json
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - ">="
36
32
  - !ruby/object:Gem::Version
37
33
  version: '0'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - ">="
44
39
  - !ruby/object:Gem::Version
45
40
  version: '0'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: oauth
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - ">="
52
46
  - !ruby/object:Gem::Version
53
47
  version: '0'
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - ">="
60
53
  - !ruby/object:Gem::Version
61
54
  version: '0'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: rest-client
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ! '>='
59
+ - - ">="
68
60
  - !ruby/object:Gem::Version
69
61
  version: '0'
70
62
  type: :runtime
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ! '>='
66
+ - - ">="
76
67
  - !ruby/object:Gem::Version
77
68
  version: '0'
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: rabl
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
- - - ! '>='
73
+ - - ">="
84
74
  - !ruby/object:Gem::Version
85
75
  version: '0'
86
76
  type: :runtime
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
- - - ! '>='
80
+ - - ">="
92
81
  - !ruby/object:Gem::Version
93
82
  version: '0'
94
83
  - !ruby/object:Gem::Dependency
95
84
  name: foreman-tasks
96
85
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
86
  requirements:
99
- - - ~>
87
+ - - "~>"
100
88
  - !ruby/object:Gem::Version
101
89
  version: 0.7.1
102
90
  type: :runtime
103
91
  prerelease: false
104
92
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
93
  requirements:
107
- - - ~>
94
+ - - "~>"
108
95
  - !ruby/object:Gem::Version
109
96
  version: 0.7.1
110
97
  - !ruby/object:Gem::Dependency
111
98
  name: foreman_docker
112
99
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
100
  requirements:
115
- - - ! '>='
101
+ - - ">="
116
102
  - !ruby/object:Gem::Version
117
103
  version: 0.2.0
104
+ - - "<"
105
+ - !ruby/object:Gem::Version
106
+ version: 2.0.0
118
107
  type: :runtime
119
108
  prerelease: false
120
109
  version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
110
  requirements:
123
- - - ! '>='
111
+ - - ">="
124
112
  - !ruby/object:Gem::Version
125
113
  version: 0.2.0
114
+ - - "<"
115
+ - !ruby/object:Gem::Version
116
+ version: 2.0.0
126
117
  - !ruby/object:Gem::Dependency
127
118
  name: strong_parameters
128
119
  requirement: !ruby/object:Gem::Requirement
129
- none: false
130
120
  requirements:
131
- - - ~>
121
+ - - "~>"
132
122
  - !ruby/object:Gem::Version
133
123
  version: 0.2.1
134
124
  type: :runtime
135
125
  prerelease: false
136
126
  version_requirements: !ruby/object:Gem::Requirement
137
- none: false
138
127
  requirements:
139
- - - ~>
128
+ - - "~>"
140
129
  - !ruby/object:Gem::Version
141
130
  version: 0.2.1
142
131
  - !ruby/object:Gem::Dependency
143
132
  name: qpid_messaging
144
133
  requirement: !ruby/object:Gem::Requirement
145
- none: false
146
134
  requirements:
147
- - - ! '>='
135
+ - - ">="
148
136
  - !ruby/object:Gem::Version
149
137
  version: 0.30.0
150
- - - <
138
+ - - "<"
151
139
  - !ruby/object:Gem::Version
152
140
  version: 0.31.0
153
141
  type: :runtime
154
142
  prerelease: false
155
143
  version_requirements: !ruby/object:Gem::Requirement
156
- none: false
157
144
  requirements:
158
- - - ! '>='
145
+ - - ">="
159
146
  - !ruby/object:Gem::Version
160
147
  version: 0.30.0
161
- - - <
148
+ - - "<"
162
149
  - !ruby/object:Gem::Version
163
150
  version: 0.31.0
164
151
  - !ruby/object:Gem::Dependency
165
152
  name: gettext_i18n_rails
166
153
  requirement: !ruby/object:Gem::Requirement
167
- none: false
168
154
  requirements:
169
- - - ! '>='
155
+ - - ">="
170
156
  - !ruby/object:Gem::Version
171
157
  version: '0'
172
158
  type: :runtime
173
159
  prerelease: false
174
160
  version_requirements: !ruby/object:Gem::Requirement
175
- none: false
176
161
  requirements:
177
- - - ! '>='
162
+ - - ">="
178
163
  - !ruby/object:Gem::Version
179
164
  version: '0'
180
165
  - !ruby/object:Gem::Dependency
181
166
  name: runcible
182
167
  requirement: !ruby/object:Gem::Requirement
183
- none: false
184
168
  requirements:
185
- - - ! '>='
169
+ - - ">="
186
170
  - !ruby/object:Gem::Version
187
171
  version: 1.3.0
188
172
  type: :runtime
189
173
  prerelease: false
190
174
  version_requirements: !ruby/object:Gem::Requirement
191
- none: false
192
175
  requirements:
193
- - - ! '>='
176
+ - - ">="
194
177
  - !ruby/object:Gem::Version
195
178
  version: 1.3.0
196
179
  - !ruby/object:Gem::Dependency
197
180
  name: anemone
198
181
  requirement: !ruby/object:Gem::Requirement
199
- none: false
200
182
  requirements:
201
- - - ! '>='
183
+ - - ">="
202
184
  - !ruby/object:Gem::Version
203
185
  version: '0'
204
186
  type: :runtime
205
187
  prerelease: false
206
188
  version_requirements: !ruby/object:Gem::Requirement
207
- none: false
208
189
  requirements:
209
- - - ! '>='
190
+ - - ">="
210
191
  - !ruby/object:Gem::Version
211
192
  version: '0'
212
193
  - !ruby/object:Gem::Dependency
213
194
  name: deface
214
195
  requirement: !ruby/object:Gem::Requirement
215
- none: false
216
196
  requirements:
217
- - - ! '>='
197
+ - - ">="
218
198
  - !ruby/object:Gem::Version
219
199
  version: 1.0.0
220
- - - <
200
+ - - "<"
221
201
  - !ruby/object:Gem::Version
222
202
  version: 2.0.0
223
203
  type: :runtime
224
204
  prerelease: false
225
205
  version_requirements: !ruby/object:Gem::Requirement
226
- none: false
227
206
  requirements:
228
- - - ! '>='
207
+ - - ">="
229
208
  - !ruby/object:Gem::Version
230
209
  version: 1.0.0
231
- - - <
210
+ - - "<"
232
211
  - !ruby/object:Gem::Version
233
212
  version: 2.0.0
234
213
  - !ruby/object:Gem::Dependency
235
214
  name: jquery-ui-rails
236
215
  requirement: !ruby/object:Gem::Requirement
237
- none: false
238
216
  requirements:
239
- - - ! '>='
217
+ - - ">="
240
218
  - !ruby/object:Gem::Version
241
219
  version: '0'
242
220
  type: :runtime
243
221
  prerelease: false
244
222
  version_requirements: !ruby/object:Gem::Requirement
245
- none: false
246
223
  requirements:
247
- - - ! '>='
224
+ - - ">="
248
225
  - !ruby/object:Gem::Version
249
226
  version: '0'
250
227
  - !ruby/object:Gem::Dependency
251
228
  name: bastion
252
229
  requirement: !ruby/object:Gem::Requirement
253
- none: false
254
230
  requirements:
255
- - - ! '>='
231
+ - - ">="
256
232
  - !ruby/object:Gem::Version
257
233
  version: 2.0.0
258
- - - <
234
+ - - "<"
259
235
  - !ruby/object:Gem::Version
260
236
  version: 3.0.0
261
237
  type: :runtime
262
238
  prerelease: false
263
239
  version_requirements: !ruby/object:Gem::Requirement
264
- none: false
265
240
  requirements:
266
- - - ! '>='
241
+ - - ">="
267
242
  - !ruby/object:Gem::Version
268
243
  version: 2.0.0
269
- - - <
244
+ - - "<"
270
245
  - !ruby/object:Gem::Version
271
246
  version: 3.0.0
272
247
  - !ruby/object:Gem::Dependency
273
248
  name: less-rails
274
249
  requirement: !ruby/object:Gem::Requirement
275
- none: false
276
250
  requirements:
277
- - - ~>
251
+ - - "~>"
278
252
  - !ruby/object:Gem::Version
279
253
  version: 2.5.0
280
254
  type: :development
281
255
  prerelease: false
282
256
  version_requirements: !ruby/object:Gem::Requirement
283
- none: false
284
257
  requirements:
285
- - - ~>
258
+ - - "~>"
286
259
  - !ruby/object:Gem::Version
287
260
  version: 2.5.0
288
261
  - !ruby/object:Gem::Dependency
289
262
  name: factory_girl_rails
290
263
  requirement: !ruby/object:Gem::Requirement
291
- none: false
292
264
  requirements:
293
- - - ! '>='
265
+ - - ">="
294
266
  - !ruby/object:Gem::Version
295
267
  version: '0'
296
268
  type: :development
297
269
  prerelease: false
298
270
  version_requirements: !ruby/object:Gem::Requirement
299
- none: false
300
271
  requirements:
301
- - - ! '>='
272
+ - - ">="
302
273
  - !ruby/object:Gem::Version
303
274
  version: '0'
304
275
  - !ruby/object:Gem::Dependency
305
276
  name: minitest-tags
306
277
  requirement: !ruby/object:Gem::Requirement
307
- none: false
308
278
  requirements:
309
- - - ! '>='
279
+ - - ">="
310
280
  - !ruby/object:Gem::Version
311
281
  version: '0'
312
282
  type: :development
313
283
  prerelease: false
314
284
  version_requirements: !ruby/object:Gem::Requirement
315
- none: false
316
285
  requirements:
317
- - - ! '>='
286
+ - - ">="
318
287
  - !ruby/object:Gem::Version
319
288
  version: '0'
320
289
  - !ruby/object:Gem::Dependency
321
290
  name: mocha
322
291
  requirement: !ruby/object:Gem::Requirement
323
- none: false
324
292
  requirements:
325
- - - ! '>='
293
+ - - ">="
326
294
  - !ruby/object:Gem::Version
327
295
  version: '0'
328
296
  type: :development
329
297
  prerelease: false
330
298
  version_requirements: !ruby/object:Gem::Requirement
331
- none: false
332
299
  requirements:
333
- - - ! '>='
300
+ - - ">="
334
301
  - !ruby/object:Gem::Version
335
302
  version: '0'
336
303
  - !ruby/object:Gem::Dependency
337
304
  name: vcr
338
305
  requirement: !ruby/object:Gem::Requirement
339
- none: false
340
306
  requirements:
341
- - - <
307
+ - - "<"
342
308
  - !ruby/object:Gem::Version
343
309
  version: 3.0.0
344
310
  type: :development
345
311
  prerelease: false
346
312
  version_requirements: !ruby/object:Gem::Requirement
347
- none: false
348
313
  requirements:
349
- - - <
314
+ - - "<"
350
315
  - !ruby/object:Gem::Version
351
316
  version: 3.0.0
352
317
  - !ruby/object:Gem::Dependency
353
318
  name: webmock
354
319
  requirement: !ruby/object:Gem::Requirement
355
- none: false
356
320
  requirements:
357
- - - ! '>='
321
+ - - ">="
358
322
  - !ruby/object:Gem::Version
359
323
  version: '0'
360
324
  type: :development
361
325
  prerelease: false
362
326
  version_requirements: !ruby/object:Gem::Requirement
363
- none: false
364
327
  requirements:
365
- - - ! '>='
328
+ - - ">="
366
329
  - !ruby/object:Gem::Version
367
330
  version: '0'
368
331
  - !ruby/object:Gem::Dependency
369
332
  name: rubocop-checkstyle_formatter
370
333
  requirement: !ruby/object:Gem::Requirement
371
- none: false
372
334
  requirements:
373
- - - ! '>='
335
+ - - ">="
374
336
  - !ruby/object:Gem::Version
375
337
  version: '0'
376
338
  type: :development
377
339
  prerelease: false
378
340
  version_requirements: !ruby/object:Gem::Requirement
379
- none: false
380
341
  requirements:
381
- - - ! '>='
342
+ - - ">="
382
343
  - !ruby/object:Gem::Version
383
344
  version: '0'
384
345
  description: Content and Subscription Management plugin for Foreman
@@ -388,1515 +349,1514 @@ executables: []
388
349
  extensions: []
389
350
  extra_rdoc_files: []
390
351
  files:
391
- - app/models/katello/candlepin/content.rb
392
- - app/models/katello/candlepin/product_content.rb
393
- - app/models/katello/capsule_lifecycle_environment.rb
394
- - app/models/katello/content_view_package_group_filter.rb
395
- - app/models/katello/content_view_filter.rb
396
- - app/models/katello/content_view_package_filter_rule.rb
397
- - app/models/katello/hash_util.rb
398
- - app/models/katello/system.rb
399
- - app/models/katello/sync_plan.rb
400
- - app/models/katello/system_activation_key.rb
401
- - app/models/katello/job.rb
402
- - app/models/katello/repository_docker_image.rb
403
- - app/models/katello/repository_puppet_module.rb
404
- - app/models/katello/pulp_task_status.rb
405
- - app/models/katello/erratum_cve.rb
406
- - app/models/katello/kt_environment.rb
407
- - app/models/katello/concerns/docker_container_wizard_state_extensions.rb
408
- - app/models/katello/concerns/organization_extensions.rb
409
- - app/models/katello/concerns/smart_proxy_extensions.rb
410
- - app/models/katello/concerns/hostgroup_extensions.rb
411
- - app/models/katello/concerns/user_extensions.rb
412
- - app/models/katello/concerns/operatingsystem_extensions.rb
413
- - app/models/katello/concerns/medium_extensions.rb
414
- - app/models/katello/concerns/container_extensions.rb
415
- - app/models/katello/concerns/location_extensions.rb
416
- - app/models/katello/concerns/redhat_extensions.rb
417
- - app/models/katello/concerns/environment_extensions.rb
418
- - app/models/katello/concerns/pulp_database_unit.rb
419
- - app/models/katello/concerns/host_managed_extensions.rb
420
- - app/models/katello/rhsm_fact_name.rb
421
- - app/models/katello/product.rb
422
- - app/models/katello/provider.rb
423
- - app/models/katello/docker_image.rb
424
- - app/models/katello/pool_activation_key.rb
425
- - app/models/katello/model.rb
426
- - app/models/katello/docker_tag.rb
427
- - app/models/katello/subscription_product.rb
428
- - app/models/katello/rhsm_fact_importer.rb
429
- - app/models/katello/hypervisor.rb
430
- - app/models/katello/erratum_package.rb
431
- - app/models/katello/content_view_component.rb
432
- - app/models/katello/repository_erratum.rb
433
- - app/models/katello/system_erratum.rb
434
- - app/models/katello/content_view_repository.rb
435
- - app/models/katello/task_status.rb
436
- - app/models/katello/glue/candlepin/candlepin_object.rb
437
- - app/models/katello/glue/candlepin/owner_info.rb
438
- - app/models/katello/glue/candlepin/product.rb
439
- - app/models/katello/glue/candlepin/owner.rb
440
- - app/models/katello/glue/candlepin/content.rb
441
- - app/models/katello/glue/candlepin/consumer.rb
442
- - app/models/katello/glue/candlepin/pool.rb
443
- - app/models/katello/glue/candlepin/subscription.rb
444
- - app/models/katello/glue/candlepin/environment.rb
445
- - app/models/katello/glue/candlepin/activation_key.rb
446
- - app/models/katello/glue/pulp/repos.rb
447
- - app/models/katello/glue/pulp/simple_package.rb
448
- - app/models/katello/glue/pulp/consumer_group.rb
449
- - app/models/katello/glue/pulp/consumer.rb
450
- - app/models/katello/glue/pulp/pulp_errors.rb
451
- - app/models/katello/glue/pulp/repo.rb
452
- - app/models/katello/glue/provider.rb
453
- - app/models/katello/puppet_module.rb
454
- - app/models/katello/system_host_collection.rb
455
- - app/models/katello/repository_rpm.rb
456
- - app/models/katello/repository_package_group.rb
457
- - app/models/katello/erratum_bugzilla.rb
458
- - app/models/katello/content_view_erratum_filter_rule.rb
459
- - app/models/katello/job_task.rb
460
- - app/models/katello/content_view_puppet_environment.rb
461
- - app/models/katello/repository.rb
462
- - app/models/katello/cp_consumer_user.rb
463
- - app/models/katello/content_view_environment.rb
464
- - app/models/katello/proxy_association_owner.rb
465
- - app/models/katello/content_view_erratum_filter.rb
466
- - app/models/katello/erratum.rb
467
- - app/models/katello/system_repository.rb
468
- - app/models/katello/pulp_sync_status.rb
469
- - app/models/katello/content_view_version_component.rb
470
- - app/models/katello/pool.rb
471
- - app/models/katello/rpm.rb
472
- - app/models/katello/subscription.rb
473
- - app/models/katello/host_collection.rb
474
- - app/models/katello/rhsm_fact_parser.rb
475
- - app/models/katello/content_view_package_group_filter_rule.rb
476
- - app/models/katello/glue.rb
477
- - app/models/katello/content_view_puppet_environment_puppet_module.rb
478
- - app/models/katello/authorization/system.rb
479
- - app/models/katello/authorization/sync_plan.rb
480
- - app/models/katello/authorization/product.rb
481
- - app/models/katello/authorization/lifecycle_environment.rb
482
- - app/models/katello/authorization/repository.rb
483
- - app/models/katello/authorization/content_view_environment.rb
484
- - app/models/katello/authorization/organization.rb
485
- - app/models/katello/authorization/pool.rb
486
- - app/models/katello/authorization/subscription.rb
487
- - app/models/katello/authorization/host_collection.rb
488
- - app/models/katello/authorization/content_view.rb
489
- - app/models/katello/authorization/content_view_history.rb
490
- - app/models/katello/authorization/activation_key.rb
491
- - app/models/katello/authorization/gpg_key.rb
492
- - app/models/katello/authorization/content_view_version.rb
493
- - app/models/katello/content_view.rb
494
- - app/models/katello/content_view_history.rb
495
- - app/models/katello/package_group.rb
496
- - app/models/katello/key_host_collection.rb
497
- - app/models/katello/activation_key.rb
498
- - app/models/katello/ping.rb
499
- - app/models/katello/gpg_key.rb
500
- - app/models/katello/content_view_package_filter.rb
501
- - app/models/katello/ext/label_from_name.rb
502
- - app/models/katello/content_view_puppet_module.rb
503
- - app/models/katello/content_view_version.rb
504
- - app/models/setting/katello.rb
505
- - app/lib/actions/candlepin/listen_on_candlepin_events.rb
506
- - app/lib/actions/candlepin/import_pool_handler.rb
507
- - app/lib/actions/candlepin/environment/destroy.rb
508
- - app/lib/actions/candlepin/environment/set_content.rb
509
- - app/lib/actions/candlepin/environment/create.rb
510
- - app/lib/actions/candlepin/abstract_async_task.rb
511
- - app/lib/actions/candlepin/candlepin_listening_service.rb
512
- - app/lib/actions/candlepin/abstract.rb
513
- - app/lib/actions/candlepin/consumer/update.rb
514
- - app/lib/actions/candlepin/consumer/auto_attach_subscriptions.rb
515
- - app/lib/actions/candlepin/consumer/destroy.rb
516
- - app/lib/actions/candlepin/consumer/create.rb
517
- - app/lib/actions/candlepin/product/content_update.rb
518
- - app/lib/actions/candlepin/product/update.rb
519
- - app/lib/actions/candlepin/product/content_destroy.rb
520
- - app/lib/actions/candlepin/product/delete_unused.rb
521
- - app/lib/actions/candlepin/product/delete_subscriptions.rb
522
- - app/lib/actions/candlepin/product/create_unlimited_subscription.rb
523
- - app/lib/actions/candlepin/product/delete_pools.rb
524
- - app/lib/actions/candlepin/product/content_create.rb
525
- - app/lib/actions/candlepin/product/content_add.rb
526
- - app/lib/actions/candlepin/product/destroy.rb
527
- - app/lib/actions/candlepin/product/content_remove.rb
528
- - app/lib/actions/candlepin/product/create.rb
529
- - app/lib/actions/candlepin/activation_key/update.rb
530
- - app/lib/actions/candlepin/activation_key/destroy.rb
531
- - app/lib/actions/candlepin/activation_key/create.rb
532
- - app/lib/actions/candlepin/owner/destroy.rb
533
- - app/lib/actions/candlepin/owner/auto_attach.rb
534
- - app/lib/actions/candlepin/owner/create.rb
535
- - app/lib/actions/katello/content_view_puppet_environment/clone_content.rb
536
- - app/lib/actions/katello/content_view_puppet_environment/clone.rb
537
- - app/lib/actions/katello/content_view_puppet_environment/create_for_version.rb
538
- - app/lib/actions/katello/content_view_puppet_environment/clear.rb
539
- - app/lib/actions/katello/content_view_puppet_environment/destroy.rb
540
- - app/lib/actions/katello/content_view_puppet_environment/create.rb
541
- - app/lib/actions/katello/content_view_puppet_module/destroy.rb
542
- - app/lib/actions/katello/provider/manifest_refresh.rb
543
- - app/lib/actions/katello/provider/update.rb
544
- - app/lib/actions/katello/provider/reindex_subscriptions.rb
545
- - app/lib/actions/katello/provider/manifest_import.rb
546
- - app/lib/actions/katello/provider/destroy.rb
547
- - app/lib/actions/katello/provider/manifest_delete.rb
548
- - app/lib/actions/katello/capsule_content/update_without_content.rb
549
- - app/lib/actions/katello/capsule_content/configure_capsule.rb
550
- - app/lib/actions/katello/capsule_content/sync.rb
551
- - app/lib/actions/katello/capsule_content/manage_bound_repositories.rb
552
- - app/lib/actions/katello/content_view/update.rb
553
- - app/lib/actions/katello/content_view/environment_create.rb
554
- - app/lib/actions/katello/content_view/remove_from_environment.rb
555
- - app/lib/actions/katello/content_view/capsule_generate_and_sync.rb
556
- - app/lib/actions/katello/content_view/add_to_environment.rb
557
- - app/lib/actions/katello/content_view/remove_version.rb
558
- - app/lib/actions/katello/content_view/promote.rb
559
- - app/lib/actions/katello/content_view/publish.rb
560
- - app/lib/actions/katello/content_view/node_metadata_generate.rb
561
- - app/lib/actions/katello/content_view/incremental_updates.rb
562
- - app/lib/actions/katello/content_view/destroy.rb
563
- - app/lib/actions/katello/content_view/remove.rb
564
- - app/lib/actions/katello/content_view/update_environment.rb
565
- - app/lib/actions/katello/content_view/presenters/incremental_updates_presenter.rb
566
- - app/lib/actions/katello/content_view/errata_mail.rb
567
- - app/lib/actions/katello/content_view/create.rb
568
- - app/lib/actions/katello/environment/library_create.rb
569
- - app/lib/actions/katello/environment/destroy.rb
570
- - app/lib/actions/katello/organization/auto_attach_subscriptions.rb
571
- - app/lib/actions/katello/organization/destroy.rb
572
- - app/lib/actions/katello/organization/create.rb
573
- - app/lib/actions/katello/system/host_destroy.rb
574
- - app/lib/actions/katello/system/update.rb
575
- - app/lib/actions/katello/system/auto_attach_subscriptions.rb
576
- - app/lib/actions/katello/system/activation_keys.rb
577
- - app/lib/actions/katello/system/erratum/applicable_errata_install.rb
578
- - app/lib/actions/katello/system/erratum/install.rb
579
- - app/lib/actions/katello/system/package_group/remove.rb
580
- - app/lib/actions/katello/system/package_group/install.rb
581
- - app/lib/actions/katello/system/package/update.rb
582
- - app/lib/actions/katello/system/package/remove.rb
583
- - app/lib/actions/katello/system/package/install.rb
584
- - app/lib/actions/katello/system/reassign.rb
585
- - app/lib/actions/katello/system/destroy.rb
586
- - app/lib/actions/katello/system/generate_applicability.rb
587
- - app/lib/actions/katello/system/create.rb
588
- - app/lib/actions/katello/product/update.rb
589
- - app/lib/actions/katello/product/content_destroy.rb
590
- - app/lib/actions/katello/product/content_create.rb
591
- - app/lib/actions/katello/product/repositories_gpg_reset.rb
592
- - app/lib/actions/katello/product/destroy.rb
593
- - app/lib/actions/katello/product/create.rb
594
- - app/lib/actions/katello/foreman/content_update.rb
595
- - app/lib/actions/katello/foreman/abstract.rb
596
- - app/lib/actions/katello/repository/destroy_medium.rb
597
- - app/lib/actions/katello/repository/update.rb
598
- - app/lib/actions/katello/repository/capsule_generate_and_sync.rb
599
- - app/lib/actions/katello/repository/import_upload.rb
600
- - app/lib/actions/katello/repository/upload_files.rb
601
- - app/lib/actions/katello/repository/clone_to_environment.rb
602
- - app/lib/actions/katello/repository/index_errata.rb
603
- - app/lib/actions/katello/repository/filtered_index_content.rb
604
- - app/lib/actions/katello/repository/correct_checksum.rb
605
- - app/lib/actions/katello/repository/finish_upload.rb
606
- - app/lib/actions/katello/repository/index_content.rb
607
- - app/lib/actions/katello/repository/index_package_groups.rb
608
- - app/lib/actions/katello/repository/remove_content.rb
609
- - app/lib/actions/katello/repository/discover.rb
610
- - app/lib/actions/katello/repository/update_media.rb
611
- - app/lib/actions/katello/repository/node_metadata_generate.rb
612
- - app/lib/actions/katello/repository/clear.rb
613
- - app/lib/actions/katello/repository/destroy.rb
614
- - app/lib/actions/katello/repository/sync.rb
615
- - app/lib/actions/katello/repository/clone_yum_content.rb
616
- - app/lib/actions/katello/repository/metadata_generate.rb
617
- - app/lib/actions/katello/repository/clone_docker_content.rb
618
- - app/lib/actions/katello/repository/errata_mail.rb
619
- - app/lib/actions/katello/repository/clone_to_version.rb
620
- - app/lib/actions/katello/repository/create.rb
621
- - app/lib/actions/katello/content_view_environment/destroy.rb
622
- - app/lib/actions/katello/content_view_environment/reassign_objects.rb
623
- - app/lib/actions/katello/activation_key/update.rb
624
- - app/lib/actions/katello/activation_key/reassign.rb
625
- - app/lib/actions/katello/activation_key/destroy.rb
626
- - app/lib/actions/katello/activation_key/create.rb
627
- - app/lib/actions/katello/sync_plan/update.rb
628
- - app/lib/actions/katello/sync_plan/remove_products.rb
629
- - app/lib/actions/katello/sync_plan/destroy.rb
630
- - app/lib/actions/katello/sync_plan/add_products.rb
631
- - app/lib/actions/katello/subscription/subscribe.rb
632
- - app/lib/actions/katello/repository_set/disable_repository.rb
633
- - app/lib/actions/katello/repository_set/scan_cdn.rb
634
- - app/lib/actions/katello/repository_set/enable_repository.rb
635
- - app/lib/actions/katello/content_view_version/incremental_update.rb
636
- - app/lib/actions/katello/content_view_version/destroy.rb
637
- - app/lib/actions/pulp/content_view_puppet_environment/index_content.rb
638
- - app/lib/actions/pulp/repos/update.rb
639
- - app/lib/actions/pulp/consumer.rb
640
- - app/lib/actions/pulp/abstract_async_task.rb
641
- - app/lib/actions/pulp/abstract.rb
642
- - app/lib/actions/pulp/consumer/content_update.rb
643
- - app/lib/actions/pulp/consumer/update.rb
644
- - app/lib/actions/pulp/consumer/sync_node.rb
645
- - app/lib/actions/pulp/consumer/deactivate_node.rb
646
- - app/lib/actions/pulp/consumer/unbind_node_distributor.rb
647
- - app/lib/actions/pulp/consumer/activate_node.rb
648
- - app/lib/actions/pulp/consumer/abstract_sync_node_task.rb
649
- - app/lib/actions/pulp/consumer/bind_node_distributor.rb
650
- - app/lib/actions/pulp/consumer/abstract_content_action.rb
651
- - app/lib/actions/pulp/consumer/destroy.rb
652
- - app/lib/actions/pulp/consumer/abstract_node_distributor_task.rb
653
- - app/lib/actions/pulp/consumer/content_install.rb
654
- - app/lib/actions/pulp/consumer/content_uninstall.rb
655
- - app/lib/actions/pulp/consumer/generate_applicability.rb
656
- - app/lib/actions/pulp/consumer/create.rb
657
- - app/lib/actions/pulp/repository/upload_file.rb
658
- - app/lib/actions/pulp/repository/copy_rpm.rb
659
- - app/lib/actions/pulp/repository/copy_errata.rb
660
- - app/lib/actions/pulp/repository/import_upload.rb
661
- - app/lib/actions/pulp/repository/delete_upload_request.rb
662
- - app/lib/actions/pulp/repository/remove_docker_image.rb
663
- - app/lib/actions/pulp/repository/create_in_plan.rb
664
- - app/lib/actions/pulp/repository/create_upload_request.rb
665
- - app/lib/actions/pulp/repository/update_importer.rb
666
- - app/lib/actions/pulp/repository/copy_yum_metadata_file.rb
667
- - app/lib/actions/pulp/repository/refresh.rb
668
- - app/lib/actions/pulp/repository/associate_distributor.rb
669
- - app/lib/actions/pulp/repository/regenerate_applicability.rb
670
- - app/lib/actions/pulp/repository/remove_puppet_module.rb
671
- - app/lib/actions/pulp/repository/remove_distribution.rb
672
- - app/lib/actions/pulp/repository/abstract_copy_content.rb
673
- - app/lib/actions/pulp/repository/copy_distribution.rb
674
- - app/lib/actions/pulp/repository/copy_docker_tag.rb
675
- - app/lib/actions/pulp/repository/remove_package_group.rb
676
- - app/lib/actions/pulp/repository/copy_puppet_module.rb
677
- - app/lib/actions/pulp/repository/destroy.rb
678
- - app/lib/actions/pulp/repository/copy_docker_image.rb
679
- - app/lib/actions/pulp/repository/purge_empty_package_groups.rb
680
- - app/lib/actions/pulp/repository/sync.rb
681
- - app/lib/actions/pulp/repository/purge_empty_errata.rb
682
- - app/lib/actions/pulp/repository/remove_schedule.rb
683
- - app/lib/actions/pulp/repository/remove_errata.rb
684
- - app/lib/actions/pulp/repository/abstract_remove_content.rb
685
- - app/lib/actions/pulp/repository/remove_rpm.rb
686
- - app/lib/actions/pulp/repository/presenters/puppet_presenter.rb
687
- - app/lib/actions/pulp/repository/presenters/yum_presenter.rb
688
- - app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb
689
- - app/lib/actions/pulp/repository/presenters/docker_presenter.rb
690
- - app/lib/actions/pulp/repository/presenters/iso_presenter.rb
691
- - app/lib/actions/pulp/repository/update_schedule.rb
692
- - app/lib/actions/pulp/repository/distributor_publish.rb
693
- - app/lib/actions/pulp/repository/create.rb
694
- - app/lib/actions/pulp/repository/refresh_distributor.rb
695
- - app/lib/actions/pulp/repository/copy_package_group.rb
696
- - app/lib/actions/pulp/expect_one_task.rb
697
- - app/lib/actions/helpers/presenter.rb
698
- - app/lib/actions/middleware/pulp_services_check.rb
699
- - app/lib/actions/middleware/candlepin_services_check.rb
700
- - app/lib/actions/middleware/record_fixtures.rb
701
- - app/lib/actions/middleware/keep_locale.rb
702
- - app/lib/actions/middleware/remote_action.rb
703
- - app/lib/actions/middleware/backend_services_check.rb
704
- - app/lib/actions/middleware/propagate_candlepin_errors.rb
705
- - app/lib/actions/abstract_async_task.rb
706
- - app/lib/actions/foreman/environment/destroy.rb
707
- - app/lib/katello/capsule_content.rb
708
- - app/lib/katello/http_resource.rb
709
- - app/lib/katello/concerns/renderer_extensions.rb
710
- - app/lib/katello/lazy_accessor.rb
711
- - app/lib/katello/foreman.rb
712
- - app/lib/katello/errors.rb
713
- - app/lib/katello/bulk_actions.rb
714
- - app/lib/katello/glue/queue.rb
715
- - app/lib/katello/glue/task.rb
716
- - app/lib/katello/resources/cdn.rb
717
- - app/lib/katello/resources/candlepin.rb
718
- - app/lib/katello/api/mapper_extensions.rb
719
- - app/lib/katello/api/v2/rendering.rb
720
- - app/lib/katello/api/v2/error_handling.rb
721
- - app/lib/katello/api/version2.rb
722
- - app/lib/katello/api/constraints/activation_key_constraint.rb
723
- - app/lib/katello/mapping.rb
724
- - app/lib/katello/repo_discovery.rb
725
- - app/lib/katello/validators/no_trailing_space_validator.rb
726
- - app/lib/katello/validators/content_view_erratum_filter_rule_validator.rb
727
- - app/lib/katello/validators/content_view_puppet_module_validator.rb
728
- - app/lib/katello/validators/unique_field_in_org.rb
729
- - app/lib/katello/validators/katello_label_format_validator.rb
730
- - app/lib/katello/validators/path_descendents_validator.rb
731
- - app/lib/katello/validators/product_unique_attribute_validator.rb
732
- - app/lib/katello/validators/content_view_filter_version_validator.rb
733
- - app/lib/katello/validators/prior_validator.rb
734
- - app/lib/katello/validators/self_reference_environment_validator.rb
735
- - app/lib/katello/validators/library_presence_validator.rb
736
- - app/lib/katello/validators/gpg_key_content_validator.rb
737
- - app/lib/katello/validators/non_library_environment_validator.rb
738
- - app/lib/katello/validators/not_in_library_validator.rb
739
- - app/lib/katello/validators/repository_unique_attribute_validator.rb
740
- - app/lib/katello/validators/katello_name_format_validator.rb
741
- - app/lib/katello/validators/content_validator.rb
742
- - app/lib/katello/validators/content_view_environment_validator.rb
743
- - app/lib/katello/validators/repo_disablement_validator.rb
744
- - app/lib/katello/validators/katello_url_format_validator.rb
745
- - app/lib/katello/README
746
- - app/lib/katello/util/package.rb
747
- - app/lib/katello/util/support.rb
748
- - app/lib/katello/util/filter_clause_generator.rb
749
- - app/lib/katello/util/package_clause_generator.rb
750
- - app/lib/katello/util/data.rb
751
- - app/lib/katello/util/model.rb
752
- - app/lib/katello/util/errata.rb
753
- - app/lib/katello/util/package_filter.rb
754
- - app/lib/katello/util/report_table.rb
755
- - app/lib/katello/util/task_status.rb
756
- - app/lib/katello/util/url_matcher.rb
757
- - app/lib/katello/util/search.rb
758
- - app/lib/katello/util/thread_session.rb
759
- - app/lib/katello/util/cdn_var_substitutor.rb
760
- - app/controllers/katello/failed_authentication_controller.rb
761
- - app/controllers/katello/concerns/organizations_controller_extensions.rb
762
- - app/controllers/katello/concerns/containers/steps_controller_extensions.rb
763
- - app/controllers/katello/concerns/operatingsystems_controller_extensions.rb
764
- - app/controllers/katello/concerns/hosts_controller_extensions.rb
765
- - app/controllers/katello/concerns/api/api_controller.rb
766
- - app/controllers/katello/concerns/api/v2/hostgroups_controller_extensions.rb
767
- - app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb
768
- - app/controllers/katello/concerns/api/v2/bulk_systems_extensions.rb
769
- - app/controllers/katello/concerns/api/v2/repository_content_controller.rb
770
- - app/controllers/katello/concerns/filtered_auto_complete_search.rb
771
- - app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb
772
- - app/controllers/katello/products_controller.rb
773
- - app/controllers/katello/http_errors.rb
774
- - app/controllers/katello/errors_controller.rb
775
- - app/controllers/katello/errata_controller.rb
776
- - app/controllers/katello/application_controller.rb
777
- - app/controllers/katello/auto_complete_search_controller.rb
778
- - app/controllers/katello/sort_column_list.rb
352
+ - LICENSE.txt
353
+ - README.md
354
+ - app/assets/images/katello/3rd-level-bg.png
355
+ - app/assets/images/katello/960.png
356
+ - app/assets/images/katello/biglogo.png
357
+ - app/assets/images/katello/black_arrow.png
358
+ - app/assets/images/katello/boxshadow.png
359
+ - app/assets/images/katello/center-background.png
360
+ - app/assets/images/katello/chart_overlay.png
361
+ - app/assets/images/katello/chosen-sprite.png
362
+ - app/assets/images/katello/cross_link.png
363
+ - app/assets/images/katello/embed/favicon.png
364
+ - app/assets/images/katello/footer-shade.png
365
+ - app/assets/images/katello/headpin-login-logo.png
366
+ - app/assets/images/katello/headpin-logo.png
367
+ - app/assets/images/katello/icons/action-icons.png
368
+ - app/assets/images/katello/icons/arrow_icon.png
369
+ - app/assets/images/katello/icons/breadcrumb-icons.png
370
+ - app/assets/images/katello/icons/check_icon.png
371
+ - app/assets/images/katello/icons/close.png
372
+ - app/assets/images/katello/icons/dotdotdot.png
373
+ - app/assets/images/katello/icons/edit-hover.png
374
+ - app/assets/images/katello/icons/edit.png
375
+ - app/assets/images/katello/icons/expander-collapsed-left.png
376
+ - app/assets/images/katello/icons/expander-collapsed.png
377
+ - app/assets/images/katello/icons/expander-expanded.png
378
+ - app/assets/images/katello/icons/favorite.png
379
+ - app/assets/images/katello/icons/grabber.png
380
+ - app/assets/images/katello/icons/icon_menu_arrow.gif
381
+ - app/assets/images/katello/icons/icon_search.png
382
+ - app/assets/images/katello/icons/info-hover.png
383
+ - app/assets/images/katello/icons/info.png
384
+ - app/assets/images/katello/icons/locked.png
385
+ - app/assets/images/katello/icons/objects.png
386
+ - app/assets/images/katello/icons/order-asc.png
387
+ - app/assets/images/katello/icons/order-desc.png
388
+ - app/assets/images/katello/icons/recent.png
389
+ - app/assets/images/katello/icons/right-arrow.png
390
+ - app/assets/images/katello/icons/simplePassMeterSprite.png
391
+ - app/assets/images/katello/icons/spinner.gif
392
+ - app/assets/images/katello/icons/spinner_head.gif
393
+ - app/assets/images/katello/icons/status.png
394
+ - app/assets/images/katello/icons/status_icons_sprite.png
395
+ - app/assets/images/katello/icons/statusicons.png
396
+ - app/assets/images/katello/icons/svg-source/action-icons.svg
397
+ - app/assets/images/katello/icons/svg-source/breadcrumb-icons.svg
398
+ - app/assets/images/katello/icons/svg-source/objects.svg
399
+ - app/assets/images/katello/icons/ui.totop.png
400
+ - app/assets/images/katello/input-bg.png
401
+ - app/assets/images/katello/katello-login-logo.png
402
+ - app/assets/images/katello/katello-logo.png
403
+ - app/assets/images/katello/katello.png
404
+ - app/assets/images/katello/katello_32x32_icon.png
405
+ - app/assets/images/katello/large-white-spinner.gif
406
+ - app/assets/images/katello/nav_pipe.png
407
+ - app/assets/images/katello/navtab_off.png
408
+ - app/assets/images/katello/navtab_on.png
409
+ - app/assets/images/katello/outer-background.png
410
+ - app/assets/images/katello/subnav-shadow.png
411
+ - app/assets/javascripts/katello/common/chosen.jquery.js
412
+ - app/assets/javascripts/katello/common/env_select.js
413
+ - app/assets/javascripts/katello/common/env_select_scroll.js
414
+ - app/assets/javascripts/katello/common/experimental/katello-globals.module.js
415
+ - app/assets/javascripts/katello/common/index.js
416
+ - app/assets/javascripts/katello/common/jquery.jeditable.custominputs.js
417
+ - app/assets/javascripts/katello/common/katello.common.js
418
+ - app/assets/javascripts/katello/common/katello.global.js
419
+ - app/assets/javascripts/katello/common/katello.js
420
+ - app/assets/javascripts/katello/common/katello_object.js
421
+ - app/assets/javascripts/katello/common/menu.js
422
+ - app/assets/javascripts/katello/common/spin.min.js
423
+ - app/assets/javascripts/katello/common/vendor.js
424
+ - app/assets/javascripts/katello/containers/container.js
425
+ - app/assets/javascripts/katello/hosts/activation_key_edit.js
426
+ - app/assets/javascripts/katello/hosts/host_and_hostgroup_edit.js
427
+ - app/assets/javascripts/katello/html5/excanvas.js
428
+ - app/assets/javascripts/katello/html5/html5.js
429
+ - app/assets/javascripts/katello/html5/index.js
430
+ - app/assets/javascripts/katello/organizations/download_certificate.js
431
+ - app/assets/javascripts/katello/providers/provider_redhat.js
432
+ - app/assets/javascripts/katello/providers/redhat/index.js
433
+ - app/assets/javascripts/katello/sync_management/index.js
434
+ - app/assets/javascripts/katello/sync_management/sync_management.js
435
+ - app/assets/javascripts/katello/widgets/auto_complete.js
436
+ - app/assets/javascripts/katello/widgets/env_content_view_selector.js
437
+ - app/assets/javascripts/katello/widgets/filtertable/filtertable.js
438
+ - app/assets/javascripts/katello/widgets/jquery.jeditable.helpers.js
439
+ - app/assets/javascripts/katello/widgets/one_panel.js
440
+ - app/assets/javascripts/katello/widgets/path_selector.js
441
+ - app/assets/javascripts/katello/widgets/subpanel_new.js
442
+ - app/assets/javascripts/katello/widgets/tabs.js
443
+ - app/assets/stylesheets/katello/_katello_base.scss
444
+ - app/assets/stylesheets/katello/_katello_colors.scss
445
+ - app/assets/stylesheets/katello/_katello_mixins.scss
446
+ - app/assets/stylesheets/katello/_katello_vars.scss
447
+ - app/assets/stylesheets/katello/_look.scss
448
+ - app/assets/stylesheets/katello/_overrides.scss
449
+ - app/assets/stylesheets/katello/activation_keys.scss
450
+ - app/assets/stylesheets/katello/containers/container.scss
451
+ - app/assets/stylesheets/katello/contents.scss
452
+ - app/assets/stylesheets/katello/fancyqueries.scss
453
+ - app/assets/stylesheets/katello/generic.scss
454
+ - app/assets/stylesheets/katello/ie.scss
455
+ - app/assets/stylesheets/katello/katello.scss
456
+ - app/assets/stylesheets/katello/katello_sprites.css.scss
457
+ - app/assets/stylesheets/katello/notifications.scss
458
+ - app/assets/stylesheets/katello/widgets/_chosen.scss
459
+ - app/assets/stylesheets/katello/widgets/_scrollpane.scss
460
+ - app/assets/stylesheets/katello/widgets/tabs.scss
779
461
  - app/controllers/katello/api/api_controller.rb
780
462
  - app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb
781
- - app/controllers/katello/api/v2/subscriptions_controller.rb
463
+ - app/controllers/katello/api/v2/activation_keys_controller.rb
782
464
  - app/controllers/katello/api/v2/api_controller.rb
465
+ - app/controllers/katello/api/v2/capsule_content_controller.rb
466
+ - app/controllers/katello/api/v2/capsules_controller.rb
783
467
  - app/controllers/katello/api/v2/content_uploads_controller.rb
784
468
  - app/controllers/katello/api/v2/content_view_filter_rules_controller.rb
785
- - app/controllers/katello/api/v2/system_packages_controller.rb
786
- - app/controllers/katello/api/v2/environments_controller.rb
787
- - app/controllers/katello/api/v2/docker_tags_controller.rb
788
- - app/controllers/katello/api/v2/system_errata_controller.rb
789
- - app/controllers/katello/api/v2/ping_controller.rb
790
- - app/controllers/katello/api/v2/products_controller.rb
791
- - app/controllers/katello/api/v2/root_controller.rb
792
- - app/controllers/katello/api/v2/activation_keys_controller.rb
793
- - app/controllers/katello/api/v2/errata_controller.rb
794
- - app/controllers/katello/api/v2/products_bulk_actions_controller.rb
795
- - app/controllers/katello/api/v2/repositories_controller.rb
796
- - app/controllers/katello/api/v2/puppet_modules_controller.rb
797
- - app/controllers/katello/api/v2/sync_controller.rb
798
- - app/controllers/katello/api/v2/packages_controller.rb
799
- - app/controllers/katello/api/v2/repository_sets_controller.rb
800
469
  - app/controllers/katello/api/v2/content_view_filters_controller.rb
801
- - app/controllers/katello/api/v2/docker_images_controller.rb
802
- - app/controllers/katello/api/v2/capsules_controller.rb
803
- - app/controllers/katello/api/v2/host_collections_controller.rb
804
- - app/controllers/katello/api/v2/package_groups_controller.rb
805
- - app/controllers/katello/api/v2/systems_bulk_actions_controller.rb
806
470
  - app/controllers/katello/api/v2/content_view_histories_controller.rb
471
+ - app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb
807
472
  - app/controllers/katello/api/v2/content_view_versions_controller.rb
808
- - app/controllers/katello/api/v2/organizations_controller.rb
809
- - app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb
810
473
  - app/controllers/katello/api/v2/content_views_controller.rb
474
+ - app/controllers/katello/api/v2/docker_images_controller.rb
475
+ - app/controllers/katello/api/v2/docker_tags_controller.rb
476
+ - app/controllers/katello/api/v2/environments_controller.rb
477
+ - app/controllers/katello/api/v2/errata_controller.rb
811
478
  - app/controllers/katello/api/v2/gpg_keys_controller.rb
479
+ - app/controllers/katello/api/v2/host_collections_controller.rb
480
+ - app/controllers/katello/api/v2/organizations_controller.rb
481
+ - app/controllers/katello/api/v2/package_groups_controller.rb
482
+ - app/controllers/katello/api/v2/packages_controller.rb
483
+ - app/controllers/katello/api/v2/ping_controller.rb
484
+ - app/controllers/katello/api/v2/products_bulk_actions_controller.rb
485
+ - app/controllers/katello/api/v2/products_controller.rb
486
+ - app/controllers/katello/api/v2/puppet_modules_controller.rb
487
+ - app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb
488
+ - app/controllers/katello/api/v2/repositories_controller.rb
489
+ - app/controllers/katello/api/v2/repository_sets_controller.rb
490
+ - app/controllers/katello/api/v2/root_controller.rb
491
+ - app/controllers/katello/api/v2/subscriptions_controller.rb
492
+ - app/controllers/katello/api/v2/sync_controller.rb
812
493
  - app/controllers/katello/api/v2/sync_plans_controller.rb
494
+ - app/controllers/katello/api/v2/system_errata_controller.rb
495
+ - app/controllers/katello/api/v2/system_packages_controller.rb
496
+ - app/controllers/katello/api/v2/systems_bulk_actions_controller.rb
813
497
  - app/controllers/katello/api/v2/systems_controller.rb
814
- - app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb
815
- - app/controllers/katello/api/v2/capsule_content_controller.rb
816
498
  - app/controllers/katello/api/v2/uebercerts_controller.rb
817
- - app/controllers/katello/sync_management_controller.rb
818
- - app/controllers/katello/providers_controller.rb
499
+ - app/controllers/katello/application_controller.rb
500
+ - app/controllers/katello/auto_complete_search_controller.rb
501
+ - app/controllers/katello/concerns/api/api_controller.rb
502
+ - app/controllers/katello/concerns/api/v2/bulk_systems_extensions.rb
503
+ - app/controllers/katello/concerns/api/v2/hostgroups_controller_extensions.rb
504
+ - app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb
505
+ - app/controllers/katello/concerns/api/v2/repository_content_controller.rb
506
+ - app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb
507
+ - app/controllers/katello/concerns/containers/steps_controller_extensions.rb
508
+ - app/controllers/katello/concerns/filtered_auto_complete_search.rb
509
+ - app/controllers/katello/concerns/hosts_controller_extensions.rb
510
+ - app/controllers/katello/concerns/operatingsystems_controller_extensions.rb
511
+ - app/controllers/katello/concerns/organizations_controller_extensions.rb
512
+ - app/controllers/katello/errata_controller.rb
513
+ - app/controllers/katello/errors_controller.rb
514
+ - app/controllers/katello/failed_authentication_controller.rb
515
+ - app/controllers/katello/http_errors.rb
819
516
  - app/controllers/katello/organizations_controller.rb
820
- - app/services/client/cert.rb
821
- - app/services/katello/pulp/pulp_content_unit.rb
822
- - app/services/katello/pulp/docker_image.rb
823
- - app/services/katello/pulp/puppet_module.rb
824
- - app/services/katello/pulp/erratum.rb
825
- - app/services/katello/pulp/rpm.rb
826
- - app/services/katello/pulp/package_group.rb
827
- - app/services/katello/puppet_class_importer_extensions.rb
828
- - app/services/katello/authentication/client_authentication.rb
829
- - app/views/katello/layouts/katello.html.erb
830
- - app/views/katello/providers/redhat/_errors.html.erb
831
- - app/views/katello/providers/redhat/_repo_sets.html.erb
832
- - app/views/katello/providers/redhat/_repos.html.erb
833
- - app/views/katello/providers/redhat/_tab.html.erb
834
- - app/views/katello/providers/redhat/show.html.erb
835
- - app/views/katello/providers/redhat/_enable_errors.html.erb
836
- - app/views/katello/api/v2/repository_sets/available_repositories.json.rabl
837
- - app/views/katello/api/v2/repository_sets/show.json.rabl
838
- - app/views/katello/api/v2/repository_sets/index.json.rabl
839
- - app/views/katello/api/v2/package_groups/show.json.rabl
840
- - app/views/katello/api/v2/package_groups/base.json.rabl
841
- - app/views/katello/api/v2/package_groups/backend.json.rabl
842
- - app/views/katello/api/v2/package_groups/index.json.rabl
843
- - app/views/katello/api/v2/packages/show.json.rabl
844
- - app/views/katello/api/v2/packages/base.json.rabl
845
- - app/views/katello/api/v2/packages/backend.json.rabl
846
- - app/views/katello/api/v2/packages/index.json.rabl
847
- - app/views/katello/api/v2/common/update.json.rabl
848
- - app/views/katello/api/v2/common/status.json.rabl
849
- - app/views/katello/api/v2/common/_org_reference.json.rabl
850
- - app/views/katello/api/v2/common/destroy.json.rabl
851
- - app/views/katello/api/v2/common/_metadata.json.rabl
852
- - app/views/katello/api/v2/common/_syncable.json.rabl
853
- - app/views/katello/api/v2/common/bulk_action.json.rabl
854
- - app/views/katello/api/v2/common/create.json.rabl
855
- - app/views/katello/api/v2/common/bulk_async.json.rabl
856
- - app/views/katello/api/v2/common/_identifier.json.rabl
857
- - app/views/katello/api/v2/common/async.json.rabl
858
- - app/views/katello/api/v2/common/index.json.rabl
859
- - app/views/katello/api/v2/common/_timestamps.json.rabl
860
- - app/views/katello/api/v2/sync/create.json.rabl
861
- - app/views/katello/api/v2/sync/index.json.rabl
862
- - app/views/katello/api/v2/uebercerts/show.json.rabl
863
- - app/views/katello/api/v2/repositories/show.json.rabl
864
- - app/views/katello/api/v2/repositories/base.json.rabl
865
- - app/views/katello/api/v2/repositories/sync.json.rabl
866
- - app/views/katello/api/v2/repositories/package_group_categories.json.rabl
867
- - app/views/katello/api/v2/repositories/package_groups.json.rabl
868
- - app/views/katello/api/v2/repositories/index.json.rabl
869
- - app/views/katello/api/v2/capsule_content/lifecycle_environments.json.rabl
870
- - app/views/katello/api/v2/puppet_modules/show.json.rabl
871
- - app/views/katello/api/v2/puppet_modules/base.json.rabl
872
- - app/views/katello/api/v2/puppet_modules/names.json.rabl
873
- - app/views/katello/api/v2/puppet_modules/name.json.rabl
874
- - app/views/katello/api/v2/puppet_modules/backend.json.rabl
875
- - app/views/katello/api/v2/puppet_modules/index.json.rabl
876
- - app/views/katello/api/v2/root/resource_list.json.rabl
877
- - app/views/katello/api/v2/gpg_keys/show.json.rabl
878
- - app/views/katello/api/v2/gpg_keys/index.json.rabl
879
- - app/views/katello/api/v2/layouts/resource.json.erb
880
- - app/views/katello/api/v2/layouts/index.json.erb
881
- - app/views/katello/api/v2/layouts/collection.json.erb
882
- - app/views/katello/api/v2/content_view_puppet_modules/show.json.rabl
883
- - app/views/katello/api/v2/content_view_puppet_modules/create.json.rabl
884
- - app/views/katello/api/v2/content_view_puppet_modules/index.json.rabl
885
- - app/views/katello/api/v2/providers/_provider.json.rabl
886
- - app/views/katello/api/v2/providers/show.json.rabl
887
- - app/views/katello/api/v2/providers/products.json.rabl
888
- - app/views/katello/api/v2/providers/index.json.rabl
889
- - app/views/katello/api/v2/ping/server_status.json.rabl
890
- - app/views/katello/api/v2/ping/show.json.rabl
891
- - app/views/katello/api/v2/ping/version.json.rabl
892
- - app/views/katello/api/v2/content_view_filter_rules/show.json.rabl
893
- - app/views/katello/api/v2/content_view_filter_rules/index.json.rabl
894
- - app/views/katello/api/v2/subscriptions/destroy.json.rabl
895
- - app/views/katello/api/v2/subscriptions/show.json.rabl
896
- - app/views/katello/api/v2/subscriptions/manifest_history.json.rabl
897
- - app/views/katello/api/v2/subscriptions/base.json.rabl
898
- - app/views/katello/api/v2/subscriptions/destroy_by_serial.json.rabl
899
- - app/views/katello/api/v2/subscriptions/organization_index.json.rabl
900
- - app/views/katello/api/v2/subscriptions/create.json.rabl
901
- - app/views/katello/api/v2/subscriptions/destroy_all.json.rabl
902
- - app/views/katello/api/v2/subscriptions/index.json.rabl
903
- - app/views/katello/api/v2/docker_tags/show.json.rabl
904
- - app/views/katello/api/v2/docker_tags/_base.json.rabl
905
- - app/views/katello/api/v2/docker_tags/index.json.rabl
906
- - app/views/katello/api/v2/organizations/show.json.rabl
907
- - app/views/katello/api/v2/organizations/index.json.rabl
908
- - app/views/katello/api/v2/systems_bulk_actions/erratum.json.rabl
909
- - app/views/katello/api/v2/systems_bulk_actions/applicable_errata.json.rabl
910
- - app/views/katello/api/v2/systems_bulk_actions/job.json.rabl
911
- - app/views/katello/api/v2/systems_bulk_actions/available_incremental_updates.json.rabl
912
- - app/views/katello/api/v2/systems/activate.json.rabl
913
- - app/views/katello/api/v2/systems/enabled_repos.json.rabl
914
- - app/views/katello/api/v2/systems/package_profile.json.rabl
915
- - app/views/katello/api/v2/systems/events.json.rabl
916
- - app/views/katello/api/v2/systems/show.json.rabl
917
- - app/views/katello/api/v2/systems/_content.json.rabl
918
- - app/views/katello/api/v2/systems/available_host_collections.json.rabl
919
- - app/views/katello/api/v2/systems/base.json.rabl
920
- - app/views/katello/api/v2/systems/releases.json.rabl
921
- - app/views/katello/api/v2/systems/erratum.json.rabl
922
- - app/views/katello/api/v2/systems/regenerate_identity_certificates.json.rabl
923
- - app/views/katello/api/v2/systems/content_override.json.rabl
924
- - app/views/katello/api/v2/systems/subscriptions.json.rabl
925
- - app/views/katello/api/v2/systems/add_host_collections.json.rabl
926
- - app/views/katello/api/v2/systems/upload_package_profile.json.rabl
927
- - app/views/katello/api/v2/systems/pools.json.rabl
928
- - app/views/katello/api/v2/systems/_pool.json.rabl
929
- - app/views/katello/api/v2/systems/remove_host_collections.json.rabl
930
- - app/views/katello/api/v2/systems/index.json.rabl
931
- - app/views/katello/api/v2/systems/product_content.json.rabl
932
- - app/views/katello/api/v2/systems/package.json.rabl
933
- - app/views/katello/api/v2/errata/compare.json.rabl
934
- - app/views/katello/api/v2/errata/show.json.rabl
935
- - app/views/katello/api/v2/errata/_counts.json.rabl
936
- - app/views/katello/api/v2/errata/_attributes.json.rabl
937
- - app/views/katello/api/v2/errata/index.json.rabl
938
- - app/views/katello/api/v2/errata/_applicable_errata.json.rabl
939
- - app/views/katello/api/v2/content_view_histories/show.json.rabl
940
- - app/views/katello/api/v2/content_view_histories/index.json.rabl
941
- - app/views/katello/api/v2/system_packages/system_task.json.rabl
942
- - app/views/katello/api/v2/content_view_filters/show.json.rabl
943
- - app/views/katello/api/v2/content_view_filters/index.json.rabl
944
- - app/views/katello/api/v2/activation_keys/available_releases.json.rabl
945
- - app/views/katello/api/v2/activation_keys/show.json.rabl
946
- - app/views/katello/api/v2/activation_keys/available_host_collections.json.rabl
947
- - app/views/katello/api/v2/activation_keys/subscriptions.json.rabl
948
- - app/views/katello/api/v2/activation_keys/index.json.rabl
949
- - app/views/katello/api/v2/activation_keys/product_content.json.rabl
950
- - app/views/katello/api/v2/content_view_versions/show.json.rabl
951
- - app/views/katello/api/v2/content_view_versions/base.json.rabl
952
- - app/views/katello/api/v2/content_view_versions/index.json.rabl
953
- - app/views/katello/api/v2/host_collections/delta_activation_keys.rabl
954
- - app/views/katello/api/v2/host_collections/systems.json.rabl
955
- - app/views/katello/api/v2/host_collections/history_show.json.rabl
956
- - app/views/katello/api/v2/host_collections/update.json.rabl
957
- - app/views/katello/api/v2/host_collections/show.json.rabl
958
- - app/views/katello/api/v2/host_collections/history.json.rabl
959
- - app/views/katello/api/v2/host_collections/create.json.rabl
960
- - app/views/katello/api/v2/host_collections/_host_collection.json.rabl
961
- - app/views/katello/api/v2/host_collections/copy.json.rabl
962
- - app/views/katello/api/v2/host_collections/index.json.rabl
963
- - app/views/katello/api/v2/content_views/show.json.rabl
964
- - app/views/katello/api/v2/content_views/version.json.rabl
965
- - app/views/katello/api/v2/content_views/puppet_modules.json.rabl
966
- - app/views/katello/api/v2/content_views/_content_view.json.rabl
967
- - app/views/katello/api/v2/content_views/copy.json.rabl
968
- - app/views/katello/api/v2/content_views/index.json.rabl
969
- - app/views/katello/api/v2/system_errata/system_task.json.rabl
970
- - app/views/katello/api/v2/system_errata/show.json.rabl
971
- - app/views/katello/api/v2/system_errata/index.json.rabl
972
- - app/views/katello/api/v2/host_collection_errata/index.json.rabl
973
- - app/views/katello/api/v2/sync_plans/available_products.json.rabl
974
- - app/views/katello/api/v2/sync_plans/show.json.rabl
975
- - app/views/katello/api/v2/sync_plans/index.json.rabl
976
- - app/views/katello/api/v2/products/repositories.json.rabl
977
- - app/views/katello/api/v2/products/show.json.rabl
978
- - app/views/katello/api/v2/products/base.json.rabl
979
- - app/views/katello/api/v2/products/index.json.rabl
980
- - app/views/katello/api/v2/environments/repositories.json.rabl
981
- - app/views/katello/api/v2/environments/show.json.rabl
982
- - app/views/katello/api/v2/environments/paths.json.rabl
983
- - app/views/katello/api/v2/environments/releases.json.rabl
984
- - app/views/katello/api/v2/environments/index.json.rabl
985
- - app/views/katello/api/v2/tasks/show.json.rabl
986
- - app/views/katello/api/v2/tasks/task_status_show.json.rabl
987
- - app/views/katello/api/v2/tasks/index.json.rabl
988
- - app/views/katello/api/v2/docker_images/show.json.rabl
989
- - app/views/katello/api/v2/docker_images/index.json.rabl
990
- - app/views/katello/errata_mailer/_host_dashboard.html.erb
991
- - app/views/katello/errata_mailer/promote_errata.html.erb
992
- - app/views/katello/errata_mailer/sync_errata.html.erb
993
- - app/views/katello/errata_mailer/sync_errata.text.erb
994
- - app/views/katello/errata_mailer/host_errata.html.erb
995
- - app/views/katello/errata_mailer/_erratum.html.erb
996
- - app/views/katello/errata_mailer/promote_errata.text.erb
997
- - app/views/katello/errata_mailer/host_errata.text.erb
998
- - app/views/katello/sync_management/_children.html.erb
999
- - app/views/katello/sync_management/index.html.erb
1000
- - app/views/katello/sync_management/_product.html.erb
1001
- - app/views/katello/sync_management/_sync_plans.html.erb
1002
- - app/views/katello/sync_management/_repo.html.erb
1003
- - app/views/katello/sync_management/_products.html.erb
1004
- - app/views/katello/sync_management/_controls.html.erb
1005
- - app/views/foreman_docker/containers/steps/_katello_container.html.erb
1006
- - app/views/dashboard/_subscription_status_widget.html.erb
1007
- - app/views/dashboard/_subscription_widget.html.erb
1008
- - app/views/dashboard/_sync_widget.html.erb
1009
- - app/views/dashboard/_errata_widget.html.erb
1010
- - app/views/dashboard/_host_collection_widget.html.erb
1011
- - app/views/dashboard/_content_views_widget.html.erb
1012
- - app/views/foreman/unattended/snippets/_subscription_manager_registration.erb
1013
- - app/views/foreman/unattended/userdata-katello.erb
1014
- - app/views/foreman/unattended/finish-katello.erb
1015
- - app/views/foreman/unattended/kickstart-katello.erb
1016
- - app/helpers/katello/organizations_helper.rb
1017
- - app/helpers/katello/application_helper.rb
1018
- - app/helpers/katello/hosts_and_hostgroups_helper.rb
517
+ - app/controllers/katello/products_controller.rb
518
+ - app/controllers/katello/providers_controller.rb
519
+ - app/controllers/katello/sort_column_list.rb
520
+ - app/controllers/katello/sync_management_controller.rb
521
+ - app/helpers/katello/activation_keys_helper.rb
522
+ - app/helpers/katello/application_helper.rb
1019
523
  - app/helpers/katello/concerns/foreman_docker/container_steps_helper_extensions.rb
1020
- - app/helpers/katello/layout_helper.rb
524
+ - app/helpers/katello/errata_mailer_helper.rb
525
+ - app/helpers/katello/host_collection_events_helper.rb
526
+ - app/helpers/katello/hosts_and_hostgroups_helper.rb
1021
527
  - app/helpers/katello/katello_form_builder.rb
1022
528
  - app/helpers/katello/katello_url_helper.rb
1023
- - app/helpers/katello/host_collection_events_helper.rb
529
+ - app/helpers/katello/katello_urls_helper.rb
530
+ - app/helpers/katello/layout_helper.rb
531
+ - app/helpers/katello/organizations_helper.rb
532
+ - app/helpers/katello/packages_helper.rb
533
+ - app/helpers/katello/products_helper.rb
534
+ - app/helpers/katello/providers_helper.rb
535
+ - app/helpers/katello/repositories_helper.rb
1024
536
  - app/helpers/katello/subscriptions_helper.rb
537
+ - app/helpers/katello/sync_management_helper.rb
538
+ - app/helpers/katello/system_events_helper.rb
1025
539
  - app/helpers/katello/system_packages_helper.rb
1026
540
  - app/helpers/katello/taxonomy_helper.rb
1027
- - app/helpers/katello/errata_mailer_helper.rb
1028
- - app/helpers/katello/system_events_helper.rb
1029
- - app/helpers/katello/products_helper.rb
1030
541
  - app/helpers/katello/translation_helper.rb
1031
- - app/helpers/katello/packages_helper.rb
1032
- - app/helpers/katello/katello_urls_helper.rb
1033
- - app/helpers/katello/sync_management_helper.rb
1034
- - app/helpers/katello/providers_helper.rb
1035
- - app/helpers/katello/repositories_helper.rb
1036
- - app/helpers/katello/activation_keys_helper.rb
1037
- - app/mailers/katello/errata_mailer.rb
1038
- - app/overrides/add_smart_proxy_form.rb
1039
- - app/overrides/add_subscription_status.rb
1040
- - app/overrides/add_organization_attributes.rb
1041
- - app/overrides/add_about_page.rb
1042
- - app/overrides/add_activation_keys_input.rb
1043
- - app/overrides/foreman/hosts/_subscription_link.html.erb
1044
- - app/overrides/foreman/hosts/_subscription_status.html.erb
1045
- - app/overrides/foreman/taxonomies/_action_buttons.html.erb
1046
- - app/overrides/foreman/about/_system_status.html.erb
1047
- - app/overrides/foreman/about/_support_documentation.html.erb
1048
- - app/overrides/foreman/about/_installed_packages.html.erb
1049
- - app/overrides/foreman/organizations/_step_1_override.html.erb
1050
- - app/overrides/foreman/organizations/_edit_override.html.erb
1051
- - app/overrides/foreman/activation_keys/_host_tab_pane.html.erb
1052
- - app/overrides/foreman/activation_keys/_host_tab.html.erb
1053
- - app/overrides/foreman/activation_keys/_host_environment_select.html.erb
1054
- - app/overrides/foreman/smart_proxies/_environment_tab.html.erb
1055
- - app/overrides/foreman/smart_proxies/_environment_tab_pane.html.erb
1056
- - app/overrides/override_taxonomy_actions.rb
1057
- - app/assets/javascripts/katello/widgets/one_panel.js
1058
- - app/assets/javascripts/katello/widgets/jquery.jeditable.helpers.js
1059
- - app/assets/javascripts/katello/widgets/subpanel_new.js
1060
- - app/assets/javascripts/katello/widgets/filtertable/filtertable.js
1061
- - app/assets/javascripts/katello/widgets/auto_complete.js
1062
- - app/assets/javascripts/katello/widgets/path_selector.js
1063
- - app/assets/javascripts/katello/widgets/env_content_view_selector.js
1064
- - app/assets/javascripts/katello/widgets/tabs.js
1065
- - app/assets/javascripts/katello/common/vendor.js
1066
- - app/assets/javascripts/katello/common/katello.js
1067
- - app/assets/javascripts/katello/common/chosen.jquery.js
1068
- - app/assets/javascripts/katello/common/env_select_scroll.js
1069
- - app/assets/javascripts/katello/common/katello.global.js
1070
- - app/assets/javascripts/katello/common/index.js
1071
- - app/assets/javascripts/katello/common/env_select.js
1072
- - app/assets/javascripts/katello/common/spin.min.js
1073
- - app/assets/javascripts/katello/common/katello_object.js
1074
- - app/assets/javascripts/katello/common/jquery.jeditable.custominputs.js
1075
- - app/assets/javascripts/katello/common/experimental/katello-globals.module.js
1076
- - app/assets/javascripts/katello/common/menu.js
1077
- - app/assets/javascripts/katello/common/katello.common.js
1078
- - app/assets/javascripts/katello/containers/container.js
1079
- - app/assets/javascripts/katello/hosts/activation_key_edit.js
1080
- - app/assets/javascripts/katello/hosts/host_and_hostgroup_edit.js
1081
- - app/assets/javascripts/katello/providers/provider_redhat.js
1082
- - app/assets/javascripts/katello/providers/redhat/index.js
1083
- - app/assets/javascripts/katello/organizations/download_certificate.js
1084
- - app/assets/javascripts/katello/html5/excanvas.js
1085
- - app/assets/javascripts/katello/html5/index.js
1086
- - app/assets/javascripts/katello/html5/html5.js
1087
- - app/assets/javascripts/katello/sync_management/index.js
1088
- - app/assets/javascripts/katello/sync_management/sync_management.js
1089
- - app/assets/images/katello/large-white-spinner.gif
1090
- - app/assets/images/katello/icons/ui.totop.png
1091
- - app/assets/images/katello/icons/statusicons.png
1092
- - app/assets/images/katello/icons/spinner.gif
1093
- - app/assets/images/katello/icons/close.png
1094
- - app/assets/images/katello/icons/expander-expanded.png
1095
- - app/assets/images/katello/icons/arrow_icon.png
1096
- - app/assets/images/katello/icons/grabber.png
1097
- - app/assets/images/katello/icons/expander-collapsed.png
1098
- - app/assets/images/katello/icons/recent.png
1099
- - app/assets/images/katello/icons/info.png
1100
- - app/assets/images/katello/icons/edit.png
1101
- - app/assets/images/katello/icons/info-hover.png
1102
- - app/assets/images/katello/icons/dotdotdot.png
1103
- - app/assets/images/katello/icons/icon_menu_arrow.gif
1104
- - app/assets/images/katello/icons/favorite.png
1105
- - app/assets/images/katello/icons/breadcrumb-icons.png
1106
- - app/assets/images/katello/icons/svg-source/objects.svg
1107
- - app/assets/images/katello/icons/svg-source/breadcrumb-icons.svg
1108
- - app/assets/images/katello/icons/svg-source/action-icons.svg
1109
- - app/assets/images/katello/icons/status_icons_sprite.png
1110
- - app/assets/images/katello/icons/check_icon.png
1111
- - app/assets/images/katello/icons/status.png
1112
- - app/assets/images/katello/icons/order-desc.png
1113
- - app/assets/images/katello/icons/objects.png
1114
- - app/assets/images/katello/icons/locked.png
1115
- - app/assets/images/katello/icons/simplePassMeterSprite.png
1116
- - app/assets/images/katello/icons/right-arrow.png
1117
- - app/assets/images/katello/icons/spinner_head.gif
1118
- - app/assets/images/katello/icons/icon_search.png
1119
- - app/assets/images/katello/icons/expander-collapsed-left.png
1120
- - app/assets/images/katello/icons/order-asc.png
1121
- - app/assets/images/katello/icons/action-icons.png
1122
- - app/assets/images/katello/icons/edit-hover.png
1123
- - app/assets/images/katello/katello.png
1124
- - app/assets/images/katello/katello-login-logo.png
1125
- - app/assets/images/katello/center-background.png
1126
- - app/assets/images/katello/black_arrow.png
1127
- - app/assets/images/katello/subnav-shadow.png
1128
- - app/assets/images/katello/headpin-logo.png
1129
- - app/assets/images/katello/navtab_off.png
1130
- - app/assets/images/katello/katello_32x32_icon.png
1131
- - app/assets/images/katello/input-bg.png
1132
- - app/assets/images/katello/cross_link.png
1133
- - app/assets/images/katello/960.png
1134
- - app/assets/images/katello/navtab_on.png
1135
- - app/assets/images/katello/chosen-sprite.png
1136
- - app/assets/images/katello/nav_pipe.png
1137
- - app/assets/images/katello/embed/favicon.png
1138
- - app/assets/images/katello/biglogo.png
1139
- - app/assets/images/katello/outer-background.png
1140
- - app/assets/images/katello/chart_overlay.png
1141
- - app/assets/images/katello/katello-logo.png
1142
- - app/assets/images/katello/boxshadow.png
1143
- - app/assets/images/katello/3rd-level-bg.png
1144
- - app/assets/images/katello/footer-shade.png
1145
- - app/assets/images/katello/headpin-login-logo.png
1146
- - app/assets/stylesheets/katello/widgets/_chosen.scss
1147
- - app/assets/stylesheets/katello/widgets/tabs.scss
1148
- - app/assets/stylesheets/katello/widgets/_scrollpane.scss
1149
- - app/assets/stylesheets/katello/fancyqueries.scss
1150
- - app/assets/stylesheets/katello/generic.scss
1151
- - app/assets/stylesheets/katello/_look.scss
1152
- - app/assets/stylesheets/katello/containers/container.scss
1153
- - app/assets/stylesheets/katello/contents.scss
1154
- - app/assets/stylesheets/katello/katello_sprites.css.scss
1155
- - app/assets/stylesheets/katello/_katello_base.scss
1156
- - app/assets/stylesheets/katello/katello.scss
1157
- - app/assets/stylesheets/katello/_katello_mixins.scss
1158
- - app/assets/stylesheets/katello/_katello_colors.scss
1159
- - app/assets/stylesheets/katello/_overrides.scss
1160
- - app/assets/stylesheets/katello/_katello_vars.scss
1161
- - app/assets/stylesheets/katello/activation_keys.scss
1162
- - app/assets/stylesheets/katello/notifications.scss
1163
- - app/assets/stylesheets/katello/ie.scss
1164
- - app/presenters/katello/repository_presenter.rb
1165
- - app/presenters/katello/content_view_version_compare_presenter.rb
1166
- - app/presenters/katello/activation_key_subscription_presenter.rb
1167
- - app/presenters/katello/relation_presenter.rb
1168
- - app/presenters/katello/sync_status_presenter.rb
1169
- - app/presenters/katello/system_subscription_presenter.rb
1170
- - vendor/assets/javascripts/katello/jquery.treeTable.js
1171
- - vendor/assets/javascripts/katello/jquery.hoverIntent.js
1172
- - vendor/assets/javascripts/katello/jquery.trunk8.js
1173
- - vendor/assets/javascripts/katello/chosen.jquery.js
1174
- - vendor/assets/javascripts/katello/jquery-1.7.2.js
1175
- - vendor/assets/javascripts/katello/jquery.ba-bbq.js
1176
- - vendor/assets/javascripts/katello/jquery.periodicalupdater.js
1177
- - vendor/assets/images/katello/move.png
1178
- - vendor/assets/images/katello/bg_toolbarheader.jpg
1179
- - vendor/assets/images/katello/icon_help.png
1180
- - vendor/assets/images/katello/icon_toolbar_arrow.gif
1181
- - vendor/assets/images/katello/icon_vmpool.png
1182
- - vendor/assets/images/katello/ui-icons_97baed_256x240.png
1183
- - vendor/assets/images/katello/ui-bg_highlight-soft_80_e0e0e0_1x100.png
1184
- - vendor/assets/images/katello/close.png
1185
- - vendor/assets/images/katello/ui-bg_highlight-hard_75_dadada_1x100.png
1186
- - vendor/assets/images/katello/ui-bg_flat_75_ffffff_40x100.png
1187
- - vendor/assets/images/katello/icon_addstorage.gif
1188
- - vendor/assets/images/katello/folder-closed.gif
1189
- - vendor/assets/images/katello/folderClosed.gif
1190
- - vendor/assets/images/katello/icon_add_vmpool.png
1191
- - vendor/assets/images/katello/ui-icons_cd0a0a_256x240.png
1192
- - vendor/assets/images/katello/icon_add_hardwarePool.png
1193
- - vendor/assets/images/katello/ui-bg_inset-hard_65_ffffff_1x100.png
1194
- - vendor/assets/images/katello/delete_white.gif
1195
- - vendor/assets/images/katello/minus.gif
1196
- - vendor/assets/images/katello/ui-icons_8f8f8f_256x240.png
1197
- - vendor/assets/images/katello/bg_header.jpg
1198
- - vendor/assets/images/katello/bg_menu_big.jpg
1199
- - vendor/assets/images/katello/icon_newgroup.gif
1200
- - vendor/assets/images/katello/ui-bg_highlight-hard_75_e6e6e6_1x100.png
1201
- - vendor/assets/images/katello/icon_dashboard.gif
1202
- - vendor/assets/images/katello/ui-bg_flat_0_aaaaaa_40x100.png
1203
- - vendor/assets/images/katello/ui-bg_highlight-hard_95_ffffff_1x100.png
1204
- - vendor/assets/images/katello/icon_menu_arrow.gif
1205
- - vendor/assets/images/katello/icon_addstorage.png
1206
- - vendor/assets/images/katello/plus.gif
1207
- - vendor/assets/images/katello/icon_hdwarepool.png
1208
- - vendor/assets/images/katello/icon_unassignedhost.gif
1209
- - vendor/assets/images/katello/add2.png
1210
- - vendor/assets/images/katello/file.gif
1211
- - vendor/assets/images/katello/delete.png
1212
- - vendor/assets/images/katello/addhost.png
1213
- - vendor/assets/images/katello/folder.gif
1214
- - vendor/assets/images/katello/icon_search.png
1215
- - vendor/assets/images/katello/image_ovirt.png
1216
- - vendor/assets/images/katello/ui-bg_inset-soft_95_fef1ec_1x100.png
1217
- - vendor/assets/images/katello/addhost2.png
1218
- - vendor/assets/images/katello/icon_delete.gif
1219
- - vendor/assets/images/katello/icon_addhost.gif
1220
- - vendor/assets/stylesheets/katello/jquery.treeTable.css
1221
- - vendor/assets/stylesheets/katello/jquery.multiselect.filter.css
1222
- - vendor/assets/stylesheets/katello/jquery-ui-1.8.11.custom.css
1223
- - vendor/assets/stylesheets/katello/facebox.css
1224
- - vendor/assets/stylesheets/katello/jquery.multiselect.css
1225
- - vendor/assets/stylesheets/katello/jquery.loadmask.css
1226
- - vendor/assets/stylesheets/katello/jquery.jnotify.css
1227
- - vendor/assets/stylesheets/katello/jquery.jscrollpane.css
1228
- - vendor/assets/stylesheets/katello/ui.spinner.css
1229
- - lib/monkeys/json_munging_patch.rb
1230
- - lib/monkeys/passenger_tee_input.rb
1231
- - lib/monkeys/multi_json_empty_fix.rb
1232
- - lib/monkeys/foreign_keys_postgresql.rb
1233
- - lib/monkeys/anemone.rb
1234
- - lib/katello/actions/actions.rb
1235
- - lib/katello/plugin.rb
1236
- - lib/katello/permissions/capsule_content_permissions.rb
1237
- - lib/katello/permissions/operatingsystems_permissions.rb
1238
- - lib/katello/permissions/lifecycle_environment_permissions.rb
1239
- - lib/katello/permissions/product_permissions.rb
1240
- - lib/katello/permissions/gpg_key_permissions.rb
1241
- - lib/katello/permissions/host_collections_permissions.rb
1242
- - lib/katello/permissions/content_host_permissions.rb
1243
- - lib/katello/permissions/subscription_permissions.rb
1244
- - lib/katello/permissions/user_permissions.rb
1245
- - lib/katello/permissions/organization_permissions.rb
1246
- - lib/katello/permissions/activation_key_permissions.rb
1247
- - lib/katello/permissions/content_view_permissions.rb
1248
- - lib/katello/permissions/sync_plan_permissions.rb
1249
- - lib/katello/engine.rb
1250
- - lib/katello/version.rb
1251
- - lib/katello/apipie/validators.rb
1252
- - lib/katello/permissions.rb
1253
- - lib/katello/url_constrained_cookie_store.rb
1254
- - lib/katello/tasks/delete_orphaned_content.rake
1255
- - lib/katello/tasks/setup.rake
1256
- - lib/katello/tasks/simplecov.rake
1257
- - lib/katello/tasks/gettext.rake
1258
- - lib/katello/tasks/jsroutes.rake
1259
- - lib/katello/tasks/test.rake
1260
- - lib/katello/tasks/jenkins.rake
1261
- - lib/katello/tasks/yard.rake
1262
- - lib/katello/tasks/jshint.rake
1263
- - lib/katello/tasks/asset_compile.rake
1264
- - lib/katello/tasks/upgrades/2.1/import_errata.rake
1265
- - lib/katello/tasks/upgrades/2.2/update_metadata_expire.rake
1266
- - lib/katello/tasks/upgrades/2.2/update_gpg_key_urls.rake
1267
- - lib/katello/tasks/upgrades/2.4/import_puppet_modules.rake
1268
- - lib/katello/tasks/upgrades/2.4/import_distributions.rake
1269
- - lib/katello/tasks/upgrades/2.4/import_rpms.rake
1270
- - lib/katello/tasks/upgrades/2.4/import_package_groups.rake
1271
- - lib/katello/tasks/upgrades/2.4/import_subscriptions.rake
1272
- - lib/katello/tasks/clean_backend_objects.rake
1273
- - lib/katello/tasks/regenerate_repo_metadata.rake
1274
- - lib/katello/tasks/rubocop.rake
1275
- - lib/katello/tasks/reindex.rake
1276
- - lib/katello/tasks/pretty_routes.rake
1277
- - lib/katello.rb
1278
- - lib/README
1279
- - db/migrate/20151015152947_add_virt_only_to_katello_pools.rb
1280
- - db/migrate/20140626204902_add_unlimited_to_host_collection.rb
1281
- - db/migrate/20131216212502_add_quantity_to_katello_key_pools.rb
1282
- - db/migrate/20140707203534_location_add_katello_default.rb
1283
- - db/migrate/20140206200439_create_content_view_puppet_modules.rb
1284
- - db/migrate/20140626204657_add_unlimited_to_activation_keys.rb
1285
- - db/migrate/20140310102051_repository_add_checksum_type.rb
1286
- - db/migrate/20141209103005_disown_foreman_templates.rb
542
+ - app/lib/actions/abstract_async_task.rb
543
+ - app/lib/actions/candlepin/abstract.rb
544
+ - app/lib/actions/candlepin/abstract_async_task.rb
545
+ - app/lib/actions/candlepin/activation_key/create.rb
546
+ - app/lib/actions/candlepin/activation_key/destroy.rb
547
+ - app/lib/actions/candlepin/activation_key/update.rb
548
+ - app/lib/actions/candlepin/candlepin_listening_service.rb
549
+ - app/lib/actions/candlepin/consumer/auto_attach_subscriptions.rb
550
+ - app/lib/actions/candlepin/consumer/create.rb
551
+ - app/lib/actions/candlepin/consumer/destroy.rb
552
+ - app/lib/actions/candlepin/consumer/update.rb
553
+ - app/lib/actions/candlepin/environment/create.rb
554
+ - app/lib/actions/candlepin/environment/destroy.rb
555
+ - app/lib/actions/candlepin/environment/set_content.rb
556
+ - app/lib/actions/candlepin/import_pool_handler.rb
557
+ - app/lib/actions/candlepin/listen_on_candlepin_events.rb
558
+ - app/lib/actions/candlepin/owner/auto_attach.rb
559
+ - app/lib/actions/candlepin/owner/create.rb
560
+ - app/lib/actions/candlepin/owner/destroy.rb
561
+ - app/lib/actions/candlepin/product/content_add.rb
562
+ - app/lib/actions/candlepin/product/content_create.rb
563
+ - app/lib/actions/candlepin/product/content_destroy.rb
564
+ - app/lib/actions/candlepin/product/content_remove.rb
565
+ - app/lib/actions/candlepin/product/content_update.rb
566
+ - app/lib/actions/candlepin/product/create.rb
567
+ - app/lib/actions/candlepin/product/create_unlimited_subscription.rb
568
+ - app/lib/actions/candlepin/product/delete_pools.rb
569
+ - app/lib/actions/candlepin/product/delete_subscriptions.rb
570
+ - app/lib/actions/candlepin/product/delete_unused.rb
571
+ - app/lib/actions/candlepin/product/destroy.rb
572
+ - app/lib/actions/candlepin/product/update.rb
573
+ - app/lib/actions/foreman/environment/destroy.rb
574
+ - app/lib/actions/helpers/presenter.rb
575
+ - app/lib/actions/katello/activation_key/create.rb
576
+ - app/lib/actions/katello/activation_key/destroy.rb
577
+ - app/lib/actions/katello/activation_key/reassign.rb
578
+ - app/lib/actions/katello/activation_key/update.rb
579
+ - app/lib/actions/katello/capsule_content/configure_capsule.rb
580
+ - app/lib/actions/katello/capsule_content/manage_bound_repositories.rb
581
+ - app/lib/actions/katello/capsule_content/sync.rb
582
+ - app/lib/actions/katello/capsule_content/update_without_content.rb
583
+ - app/lib/actions/katello/content_view/add_to_environment.rb
584
+ - app/lib/actions/katello/content_view/capsule_generate_and_sync.rb
585
+ - app/lib/actions/katello/content_view/create.rb
586
+ - app/lib/actions/katello/content_view/destroy.rb
587
+ - app/lib/actions/katello/content_view/environment_create.rb
588
+ - app/lib/actions/katello/content_view/errata_mail.rb
589
+ - app/lib/actions/katello/content_view/incremental_updates.rb
590
+ - app/lib/actions/katello/content_view/node_metadata_generate.rb
591
+ - app/lib/actions/katello/content_view/presenters/incremental_updates_presenter.rb
592
+ - app/lib/actions/katello/content_view/promote.rb
593
+ - app/lib/actions/katello/content_view/publish.rb
594
+ - app/lib/actions/katello/content_view/remove.rb
595
+ - app/lib/actions/katello/content_view/remove_from_environment.rb
596
+ - app/lib/actions/katello/content_view/remove_version.rb
597
+ - app/lib/actions/katello/content_view/update.rb
598
+ - app/lib/actions/katello/content_view/update_environment.rb
599
+ - app/lib/actions/katello/content_view_environment/destroy.rb
600
+ - app/lib/actions/katello/content_view_environment/reassign_objects.rb
601
+ - app/lib/actions/katello/content_view_puppet_environment/clear.rb
602
+ - app/lib/actions/katello/content_view_puppet_environment/clone.rb
603
+ - app/lib/actions/katello/content_view_puppet_environment/clone_content.rb
604
+ - app/lib/actions/katello/content_view_puppet_environment/create.rb
605
+ - app/lib/actions/katello/content_view_puppet_environment/create_for_version.rb
606
+ - app/lib/actions/katello/content_view_puppet_environment/destroy.rb
607
+ - app/lib/actions/katello/content_view_puppet_module/destroy.rb
608
+ - app/lib/actions/katello/content_view_version/destroy.rb
609
+ - app/lib/actions/katello/content_view_version/incremental_update.rb
610
+ - app/lib/actions/katello/environment/destroy.rb
611
+ - app/lib/actions/katello/environment/library_create.rb
612
+ - app/lib/actions/katello/foreman/abstract.rb
613
+ - app/lib/actions/katello/foreman/content_update.rb
614
+ - app/lib/actions/katello/organization/auto_attach_subscriptions.rb
615
+ - app/lib/actions/katello/organization/create.rb
616
+ - app/lib/actions/katello/organization/destroy.rb
617
+ - app/lib/actions/katello/product/content_create.rb
618
+ - app/lib/actions/katello/product/content_destroy.rb
619
+ - app/lib/actions/katello/product/create.rb
620
+ - app/lib/actions/katello/product/destroy.rb
621
+ - app/lib/actions/katello/product/repositories_gpg_reset.rb
622
+ - app/lib/actions/katello/product/update.rb
623
+ - app/lib/actions/katello/provider/destroy.rb
624
+ - app/lib/actions/katello/provider/manifest_delete.rb
625
+ - app/lib/actions/katello/provider/manifest_import.rb
626
+ - app/lib/actions/katello/provider/manifest_refresh.rb
627
+ - app/lib/actions/katello/provider/reindex_subscriptions.rb
628
+ - app/lib/actions/katello/provider/update.rb
629
+ - app/lib/actions/katello/repository/capsule_generate_and_sync.rb
630
+ - app/lib/actions/katello/repository/clear.rb
631
+ - app/lib/actions/katello/repository/clone_docker_content.rb
632
+ - app/lib/actions/katello/repository/clone_to_environment.rb
633
+ - app/lib/actions/katello/repository/clone_to_version.rb
634
+ - app/lib/actions/katello/repository/clone_yum_content.rb
635
+ - app/lib/actions/katello/repository/correct_checksum.rb
636
+ - app/lib/actions/katello/repository/create.rb
637
+ - app/lib/actions/katello/repository/destroy.rb
638
+ - app/lib/actions/katello/repository/destroy_medium.rb
639
+ - app/lib/actions/katello/repository/discover.rb
640
+ - app/lib/actions/katello/repository/errata_mail.rb
641
+ - app/lib/actions/katello/repository/filtered_index_content.rb
642
+ - app/lib/actions/katello/repository/finish_upload.rb
643
+ - app/lib/actions/katello/repository/import_upload.rb
644
+ - app/lib/actions/katello/repository/index_content.rb
645
+ - app/lib/actions/katello/repository/index_errata.rb
646
+ - app/lib/actions/katello/repository/index_package_groups.rb
647
+ - app/lib/actions/katello/repository/metadata_generate.rb
648
+ - app/lib/actions/katello/repository/node_metadata_generate.rb
649
+ - app/lib/actions/katello/repository/remove_content.rb
650
+ - app/lib/actions/katello/repository/sync.rb
651
+ - app/lib/actions/katello/repository/update.rb
652
+ - app/lib/actions/katello/repository/update_media.rb
653
+ - app/lib/actions/katello/repository/upload_files.rb
654
+ - app/lib/actions/katello/repository_set/disable_repository.rb
655
+ - app/lib/actions/katello/repository_set/enable_repository.rb
656
+ - app/lib/actions/katello/repository_set/scan_cdn.rb
657
+ - app/lib/actions/katello/subscription/subscribe.rb
658
+ - app/lib/actions/katello/sync_plan/add_products.rb
659
+ - app/lib/actions/katello/sync_plan/destroy.rb
660
+ - app/lib/actions/katello/sync_plan/remove_products.rb
661
+ - app/lib/actions/katello/sync_plan/update.rb
662
+ - app/lib/actions/katello/system/activation_keys.rb
663
+ - app/lib/actions/katello/system/auto_attach_subscriptions.rb
664
+ - app/lib/actions/katello/system/create.rb
665
+ - app/lib/actions/katello/system/destroy.rb
666
+ - app/lib/actions/katello/system/erratum/applicable_errata_install.rb
667
+ - app/lib/actions/katello/system/erratum/install.rb
668
+ - app/lib/actions/katello/system/generate_applicability.rb
669
+ - app/lib/actions/katello/system/host_destroy.rb
670
+ - app/lib/actions/katello/system/package/install.rb
671
+ - app/lib/actions/katello/system/package/remove.rb
672
+ - app/lib/actions/katello/system/package/update.rb
673
+ - app/lib/actions/katello/system/package_group/install.rb
674
+ - app/lib/actions/katello/system/package_group/remove.rb
675
+ - app/lib/actions/katello/system/reassign.rb
676
+ - app/lib/actions/katello/system/update.rb
677
+ - app/lib/actions/middleware/backend_services_check.rb
678
+ - app/lib/actions/middleware/candlepin_services_check.rb
679
+ - app/lib/actions/middleware/keep_locale.rb
680
+ - app/lib/actions/middleware/propagate_candlepin_errors.rb
681
+ - app/lib/actions/middleware/pulp_services_check.rb
682
+ - app/lib/actions/middleware/record_fixtures.rb
683
+ - app/lib/actions/middleware/remote_action.rb
684
+ - app/lib/actions/pulp/abstract.rb
685
+ - app/lib/actions/pulp/abstract_async_task.rb
686
+ - app/lib/actions/pulp/consumer.rb
687
+ - app/lib/actions/pulp/consumer/abstract_content_action.rb
688
+ - app/lib/actions/pulp/consumer/abstract_node_distributor_task.rb
689
+ - app/lib/actions/pulp/consumer/abstract_sync_node_task.rb
690
+ - app/lib/actions/pulp/consumer/activate_node.rb
691
+ - app/lib/actions/pulp/consumer/bind_node_distributor.rb
692
+ - app/lib/actions/pulp/consumer/content_install.rb
693
+ - app/lib/actions/pulp/consumer/content_uninstall.rb
694
+ - app/lib/actions/pulp/consumer/content_update.rb
695
+ - app/lib/actions/pulp/consumer/create.rb
696
+ - app/lib/actions/pulp/consumer/deactivate_node.rb
697
+ - app/lib/actions/pulp/consumer/destroy.rb
698
+ - app/lib/actions/pulp/consumer/generate_applicability.rb
699
+ - app/lib/actions/pulp/consumer/sync_node.rb
700
+ - app/lib/actions/pulp/consumer/unbind_node_distributor.rb
701
+ - app/lib/actions/pulp/consumer/update.rb
702
+ - app/lib/actions/pulp/content_view_puppet_environment/index_content.rb
703
+ - app/lib/actions/pulp/expect_one_task.rb
704
+ - app/lib/actions/pulp/repos/update.rb
705
+ - app/lib/actions/pulp/repository/abstract_copy_content.rb
706
+ - app/lib/actions/pulp/repository/abstract_remove_content.rb
707
+ - app/lib/actions/pulp/repository/associate_distributor.rb
708
+ - app/lib/actions/pulp/repository/copy_distribution.rb
709
+ - app/lib/actions/pulp/repository/copy_docker_image.rb
710
+ - app/lib/actions/pulp/repository/copy_docker_tag.rb
711
+ - app/lib/actions/pulp/repository/copy_errata.rb
712
+ - app/lib/actions/pulp/repository/copy_package_group.rb
713
+ - app/lib/actions/pulp/repository/copy_puppet_module.rb
714
+ - app/lib/actions/pulp/repository/copy_rpm.rb
715
+ - app/lib/actions/pulp/repository/copy_yum_metadata_file.rb
716
+ - app/lib/actions/pulp/repository/create.rb
717
+ - app/lib/actions/pulp/repository/create_in_plan.rb
718
+ - app/lib/actions/pulp/repository/create_upload_request.rb
719
+ - app/lib/actions/pulp/repository/delete_upload_request.rb
720
+ - app/lib/actions/pulp/repository/destroy.rb
721
+ - app/lib/actions/pulp/repository/distributor_publish.rb
722
+ - app/lib/actions/pulp/repository/import_upload.rb
723
+ - app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb
724
+ - app/lib/actions/pulp/repository/presenters/docker_presenter.rb
725
+ - app/lib/actions/pulp/repository/presenters/iso_presenter.rb
726
+ - app/lib/actions/pulp/repository/presenters/puppet_presenter.rb
727
+ - app/lib/actions/pulp/repository/presenters/yum_presenter.rb
728
+ - app/lib/actions/pulp/repository/purge_empty_errata.rb
729
+ - app/lib/actions/pulp/repository/purge_empty_package_groups.rb
730
+ - app/lib/actions/pulp/repository/refresh.rb
731
+ - app/lib/actions/pulp/repository/refresh_distributor.rb
732
+ - app/lib/actions/pulp/repository/regenerate_applicability.rb
733
+ - app/lib/actions/pulp/repository/remove_distribution.rb
734
+ - app/lib/actions/pulp/repository/remove_docker_image.rb
735
+ - app/lib/actions/pulp/repository/remove_errata.rb
736
+ - app/lib/actions/pulp/repository/remove_package_group.rb
737
+ - app/lib/actions/pulp/repository/remove_puppet_module.rb
738
+ - app/lib/actions/pulp/repository/remove_rpm.rb
739
+ - app/lib/actions/pulp/repository/remove_schedule.rb
740
+ - app/lib/actions/pulp/repository/sync.rb
741
+ - app/lib/actions/pulp/repository/update_importer.rb
742
+ - app/lib/actions/pulp/repository/update_schedule.rb
743
+ - app/lib/actions/pulp/repository/upload_file.rb
744
+ - app/lib/katello/README
745
+ - app/lib/katello/api/constraints/activation_key_constraint.rb
746
+ - app/lib/katello/api/mapper_extensions.rb
747
+ - app/lib/katello/api/v2/error_handling.rb
748
+ - app/lib/katello/api/v2/rendering.rb
749
+ - app/lib/katello/api/version2.rb
750
+ - app/lib/katello/bulk_actions.rb
751
+ - app/lib/katello/capsule_content.rb
752
+ - app/lib/katello/concerns/renderer_extensions.rb
753
+ - app/lib/katello/errors.rb
754
+ - app/lib/katello/foreman.rb
755
+ - app/lib/katello/glue/queue.rb
756
+ - app/lib/katello/glue/task.rb
757
+ - app/lib/katello/http_resource.rb
758
+ - app/lib/katello/lazy_accessor.rb
759
+ - app/lib/katello/mapping.rb
760
+ - app/lib/katello/repo_discovery.rb
761
+ - app/lib/katello/resources/candlepin.rb
762
+ - app/lib/katello/resources/cdn.rb
763
+ - app/lib/katello/util/cdn_var_substitutor.rb
764
+ - app/lib/katello/util/data.rb
765
+ - app/lib/katello/util/errata.rb
766
+ - app/lib/katello/util/filter_clause_generator.rb
767
+ - app/lib/katello/util/model.rb
768
+ - app/lib/katello/util/package.rb
769
+ - app/lib/katello/util/package_clause_generator.rb
770
+ - app/lib/katello/util/package_filter.rb
771
+ - app/lib/katello/util/report_table.rb
772
+ - app/lib/katello/util/search.rb
773
+ - app/lib/katello/util/support.rb
774
+ - app/lib/katello/util/task_status.rb
775
+ - app/lib/katello/util/thread_session.rb
776
+ - app/lib/katello/util/url_matcher.rb
777
+ - app/lib/katello/validators/content_validator.rb
778
+ - app/lib/katello/validators/content_view_environment_validator.rb
779
+ - app/lib/katello/validators/content_view_erratum_filter_rule_validator.rb
780
+ - app/lib/katello/validators/content_view_filter_version_validator.rb
781
+ - app/lib/katello/validators/content_view_puppet_module_validator.rb
782
+ - app/lib/katello/validators/gpg_key_content_validator.rb
783
+ - app/lib/katello/validators/katello_label_format_validator.rb
784
+ - app/lib/katello/validators/katello_name_format_validator.rb
785
+ - app/lib/katello/validators/katello_url_format_validator.rb
786
+ - app/lib/katello/validators/library_presence_validator.rb
787
+ - app/lib/katello/validators/no_trailing_space_validator.rb
788
+ - app/lib/katello/validators/non_library_environment_validator.rb
789
+ - app/lib/katello/validators/not_in_library_validator.rb
790
+ - app/lib/katello/validators/path_descendents_validator.rb
791
+ - app/lib/katello/validators/prior_validator.rb
792
+ - app/lib/katello/validators/product_unique_attribute_validator.rb
793
+ - app/lib/katello/validators/repo_disablement_validator.rb
794
+ - app/lib/katello/validators/repository_unique_attribute_validator.rb
795
+ - app/lib/katello/validators/self_reference_environment_validator.rb
796
+ - app/lib/katello/validators/unique_field_in_org.rb
797
+ - app/mailers/katello/errata_mailer.rb
798
+ - app/models/katello/activation_key.rb
799
+ - app/models/katello/authorization/activation_key.rb
800
+ - app/models/katello/authorization/content_view.rb
801
+ - app/models/katello/authorization/content_view_environment.rb
802
+ - app/models/katello/authorization/content_view_history.rb
803
+ - app/models/katello/authorization/content_view_version.rb
804
+ - app/models/katello/authorization/gpg_key.rb
805
+ - app/models/katello/authorization/host_collection.rb
806
+ - app/models/katello/authorization/lifecycle_environment.rb
807
+ - app/models/katello/authorization/organization.rb
808
+ - app/models/katello/authorization/pool.rb
809
+ - app/models/katello/authorization/product.rb
810
+ - app/models/katello/authorization/repository.rb
811
+ - app/models/katello/authorization/subscription.rb
812
+ - app/models/katello/authorization/sync_plan.rb
813
+ - app/models/katello/authorization/system.rb
814
+ - app/models/katello/candlepin/content.rb
815
+ - app/models/katello/candlepin/product_content.rb
816
+ - app/models/katello/capsule_lifecycle_environment.rb
817
+ - app/models/katello/concerns/container_extensions.rb
818
+ - app/models/katello/concerns/docker_container_wizard_state_extensions.rb
819
+ - app/models/katello/concerns/environment_extensions.rb
820
+ - app/models/katello/concerns/host_managed_extensions.rb
821
+ - app/models/katello/concerns/hostgroup_extensions.rb
822
+ - app/models/katello/concerns/location_extensions.rb
823
+ - app/models/katello/concerns/medium_extensions.rb
824
+ - app/models/katello/concerns/operatingsystem_extensions.rb
825
+ - app/models/katello/concerns/organization_extensions.rb
826
+ - app/models/katello/concerns/pulp_database_unit.rb
827
+ - app/models/katello/concerns/redhat_extensions.rb
828
+ - app/models/katello/concerns/smart_proxy_extensions.rb
829
+ - app/models/katello/concerns/user_extensions.rb
830
+ - app/models/katello/content_view.rb
831
+ - app/models/katello/content_view_component.rb
832
+ - app/models/katello/content_view_environment.rb
833
+ - app/models/katello/content_view_erratum_filter.rb
834
+ - app/models/katello/content_view_erratum_filter_rule.rb
835
+ - app/models/katello/content_view_filter.rb
836
+ - app/models/katello/content_view_history.rb
837
+ - app/models/katello/content_view_package_filter.rb
838
+ - app/models/katello/content_view_package_filter_rule.rb
839
+ - app/models/katello/content_view_package_group_filter.rb
840
+ - app/models/katello/content_view_package_group_filter_rule.rb
841
+ - app/models/katello/content_view_puppet_environment.rb
842
+ - app/models/katello/content_view_puppet_environment_puppet_module.rb
843
+ - app/models/katello/content_view_puppet_module.rb
844
+ - app/models/katello/content_view_repository.rb
845
+ - app/models/katello/content_view_version.rb
846
+ - app/models/katello/content_view_version_component.rb
847
+ - app/models/katello/cp_consumer_user.rb
848
+ - app/models/katello/docker_image.rb
849
+ - app/models/katello/docker_tag.rb
850
+ - app/models/katello/erratum.rb
851
+ - app/models/katello/erratum_bugzilla.rb
852
+ - app/models/katello/erratum_cve.rb
853
+ - app/models/katello/erratum_package.rb
854
+ - app/models/katello/ext/label_from_name.rb
855
+ - app/models/katello/glue.rb
856
+ - app/models/katello/glue/candlepin/activation_key.rb
857
+ - app/models/katello/glue/candlepin/candlepin_object.rb
858
+ - app/models/katello/glue/candlepin/consumer.rb
859
+ - app/models/katello/glue/candlepin/content.rb
860
+ - app/models/katello/glue/candlepin/environment.rb
861
+ - app/models/katello/glue/candlepin/owner.rb
862
+ - app/models/katello/glue/candlepin/owner_info.rb
863
+ - app/models/katello/glue/candlepin/pool.rb
864
+ - app/models/katello/glue/candlepin/product.rb
865
+ - app/models/katello/glue/candlepin/subscription.rb
866
+ - app/models/katello/glue/provider.rb
867
+ - app/models/katello/glue/pulp/consumer.rb
868
+ - app/models/katello/glue/pulp/consumer_group.rb
869
+ - app/models/katello/glue/pulp/pulp_errors.rb
870
+ - app/models/katello/glue/pulp/repo.rb
871
+ - app/models/katello/glue/pulp/repos.rb
872
+ - app/models/katello/glue/pulp/simple_package.rb
873
+ - app/models/katello/gpg_key.rb
874
+ - app/models/katello/hash_util.rb
875
+ - app/models/katello/host_collection.rb
876
+ - app/models/katello/hypervisor.rb
877
+ - app/models/katello/job.rb
878
+ - app/models/katello/job_task.rb
879
+ - app/models/katello/key_host_collection.rb
880
+ - app/models/katello/kt_environment.rb
881
+ - app/models/katello/model.rb
882
+ - app/models/katello/package_group.rb
883
+ - app/models/katello/ping.rb
884
+ - app/models/katello/pool.rb
885
+ - app/models/katello/pool_activation_key.rb
886
+ - app/models/katello/product.rb
887
+ - app/models/katello/provider.rb
888
+ - app/models/katello/proxy_association_owner.rb
889
+ - app/models/katello/pulp_sync_status.rb
890
+ - app/models/katello/pulp_task_status.rb
891
+ - app/models/katello/puppet_module.rb
892
+ - app/models/katello/repository.rb
893
+ - app/models/katello/repository_docker_image.rb
894
+ - app/models/katello/repository_erratum.rb
895
+ - app/models/katello/repository_package_group.rb
896
+ - app/models/katello/repository_puppet_module.rb
897
+ - app/models/katello/repository_rpm.rb
898
+ - app/models/katello/rhsm_fact_importer.rb
899
+ - app/models/katello/rhsm_fact_name.rb
900
+ - app/models/katello/rhsm_fact_parser.rb
901
+ - app/models/katello/rpm.rb
902
+ - app/models/katello/subscription.rb
903
+ - app/models/katello/subscription_product.rb
904
+ - app/models/katello/sync_plan.rb
905
+ - app/models/katello/system.rb
906
+ - app/models/katello/system_activation_key.rb
907
+ - app/models/katello/system_erratum.rb
908
+ - app/models/katello/system_host_collection.rb
909
+ - app/models/katello/system_repository.rb
910
+ - app/models/katello/task_status.rb
911
+ - app/models/setting/katello.rb
912
+ - app/overrides/add_about_page.rb
913
+ - app/overrides/add_activation_keys_input.rb
914
+ - app/overrides/add_organization_attributes.rb
915
+ - app/overrides/add_smart_proxy_form.rb
916
+ - app/overrides/add_subscription_status.rb
917
+ - app/overrides/foreman/about/_installed_packages.html.erb
918
+ - app/overrides/foreman/about/_support_documentation.html.erb
919
+ - app/overrides/foreman/about/_system_status.html.erb
920
+ - app/overrides/foreman/activation_keys/_host_environment_select.html.erb
921
+ - app/overrides/foreman/activation_keys/_host_tab.html.erb
922
+ - app/overrides/foreman/activation_keys/_host_tab_pane.html.erb
923
+ - app/overrides/foreman/hosts/_subscription_link.html.erb
924
+ - app/overrides/foreman/hosts/_subscription_status.html.erb
925
+ - app/overrides/foreman/organizations/_edit_override.html.erb
926
+ - app/overrides/foreman/organizations/_step_1_override.html.erb
927
+ - app/overrides/foreman/smart_proxies/_environment_tab.html.erb
928
+ - app/overrides/foreman/smart_proxies/_environment_tab_pane.html.erb
929
+ - app/overrides/foreman/taxonomies/_action_buttons.html.erb
930
+ - app/overrides/override_taxonomy_actions.rb
931
+ - app/presenters/katello/activation_key_subscription_presenter.rb
932
+ - app/presenters/katello/content_view_version_compare_presenter.rb
933
+ - app/presenters/katello/relation_presenter.rb
934
+ - app/presenters/katello/repository_presenter.rb
935
+ - app/presenters/katello/sync_status_presenter.rb
936
+ - app/presenters/katello/system_subscription_presenter.rb
937
+ - app/services/client/cert.rb
938
+ - app/services/katello/authentication/client_authentication.rb
939
+ - app/services/katello/pulp/docker_image.rb
940
+ - app/services/katello/pulp/erratum.rb
941
+ - app/services/katello/pulp/package_group.rb
942
+ - app/services/katello/pulp/pulp_content_unit.rb
943
+ - app/services/katello/pulp/puppet_module.rb
944
+ - app/services/katello/pulp/rpm.rb
945
+ - app/services/katello/puppet_class_importer_extensions.rb
946
+ - app/views/dashboard/_content_views_widget.html.erb
947
+ - app/views/dashboard/_errata_widget.html.erb
948
+ - app/views/dashboard/_host_collection_widget.html.erb
949
+ - app/views/dashboard/_subscription_status_widget.html.erb
950
+ - app/views/dashboard/_subscription_widget.html.erb
951
+ - app/views/dashboard/_sync_widget.html.erb
952
+ - app/views/foreman/unattended/finish-katello.erb
953
+ - app/views/foreman/unattended/kickstart-katello.erb
954
+ - app/views/foreman/unattended/snippets/_subscription_manager_registration.erb
955
+ - app/views/foreman/unattended/userdata-katello.erb
956
+ - app/views/foreman_docker/containers/steps/_katello_container.html.erb
957
+ - app/views/katello/api/v2/activation_keys/available_host_collections.json.rabl
958
+ - app/views/katello/api/v2/activation_keys/available_releases.json.rabl
959
+ - app/views/katello/api/v2/activation_keys/index.json.rabl
960
+ - app/views/katello/api/v2/activation_keys/product_content.json.rabl
961
+ - app/views/katello/api/v2/activation_keys/show.json.rabl
962
+ - app/views/katello/api/v2/activation_keys/subscriptions.json.rabl
963
+ - app/views/katello/api/v2/capsule_content/lifecycle_environments.json.rabl
964
+ - app/views/katello/api/v2/common/_identifier.json.rabl
965
+ - app/views/katello/api/v2/common/_metadata.json.rabl
966
+ - app/views/katello/api/v2/common/_org_reference.json.rabl
967
+ - app/views/katello/api/v2/common/_syncable.json.rabl
968
+ - app/views/katello/api/v2/common/_timestamps.json.rabl
969
+ - app/views/katello/api/v2/common/async.json.rabl
970
+ - app/views/katello/api/v2/common/bulk_action.json.rabl
971
+ - app/views/katello/api/v2/common/bulk_async.json.rabl
972
+ - app/views/katello/api/v2/common/create.json.rabl
973
+ - app/views/katello/api/v2/common/destroy.json.rabl
974
+ - app/views/katello/api/v2/common/index.json.rabl
975
+ - app/views/katello/api/v2/common/status.json.rabl
976
+ - app/views/katello/api/v2/common/update.json.rabl
977
+ - app/views/katello/api/v2/content_view_filter_rules/index.json.rabl
978
+ - app/views/katello/api/v2/content_view_filter_rules/show.json.rabl
979
+ - app/views/katello/api/v2/content_view_filters/index.json.rabl
980
+ - app/views/katello/api/v2/content_view_filters/show.json.rabl
981
+ - app/views/katello/api/v2/content_view_histories/index.json.rabl
982
+ - app/views/katello/api/v2/content_view_histories/show.json.rabl
983
+ - app/views/katello/api/v2/content_view_puppet_modules/create.json.rabl
984
+ - app/views/katello/api/v2/content_view_puppet_modules/index.json.rabl
985
+ - app/views/katello/api/v2/content_view_puppet_modules/show.json.rabl
986
+ - app/views/katello/api/v2/content_view_versions/base.json.rabl
987
+ - app/views/katello/api/v2/content_view_versions/index.json.rabl
988
+ - app/views/katello/api/v2/content_view_versions/show.json.rabl
989
+ - app/views/katello/api/v2/content_views/_content_view.json.rabl
990
+ - app/views/katello/api/v2/content_views/copy.json.rabl
991
+ - app/views/katello/api/v2/content_views/index.json.rabl
992
+ - app/views/katello/api/v2/content_views/puppet_modules.json.rabl
993
+ - app/views/katello/api/v2/content_views/show.json.rabl
994
+ - app/views/katello/api/v2/content_views/version.json.rabl
995
+ - app/views/katello/api/v2/docker_images/index.json.rabl
996
+ - app/views/katello/api/v2/docker_images/show.json.rabl
997
+ - app/views/katello/api/v2/docker_tags/_base.json.rabl
998
+ - app/views/katello/api/v2/docker_tags/index.json.rabl
999
+ - app/views/katello/api/v2/docker_tags/show.json.rabl
1000
+ - app/views/katello/api/v2/environments/index.json.rabl
1001
+ - app/views/katello/api/v2/environments/paths.json.rabl
1002
+ - app/views/katello/api/v2/environments/releases.json.rabl
1003
+ - app/views/katello/api/v2/environments/repositories.json.rabl
1004
+ - app/views/katello/api/v2/environments/show.json.rabl
1005
+ - app/views/katello/api/v2/errata/_applicable_errata.json.rabl
1006
+ - app/views/katello/api/v2/errata/_attributes.json.rabl
1007
+ - app/views/katello/api/v2/errata/_counts.json.rabl
1008
+ - app/views/katello/api/v2/errata/compare.json.rabl
1009
+ - app/views/katello/api/v2/errata/index.json.rabl
1010
+ - app/views/katello/api/v2/errata/show.json.rabl
1011
+ - app/views/katello/api/v2/gpg_keys/index.json.rabl
1012
+ - app/views/katello/api/v2/gpg_keys/show.json.rabl
1013
+ - app/views/katello/api/v2/host_collection_errata/index.json.rabl
1014
+ - app/views/katello/api/v2/host_collections/_host_collection.json.rabl
1015
+ - app/views/katello/api/v2/host_collections/copy.json.rabl
1016
+ - app/views/katello/api/v2/host_collections/create.json.rabl
1017
+ - app/views/katello/api/v2/host_collections/delta_activation_keys.rabl
1018
+ - app/views/katello/api/v2/host_collections/history.json.rabl
1019
+ - app/views/katello/api/v2/host_collections/history_show.json.rabl
1020
+ - app/views/katello/api/v2/host_collections/index.json.rabl
1021
+ - app/views/katello/api/v2/host_collections/show.json.rabl
1022
+ - app/views/katello/api/v2/host_collections/systems.json.rabl
1023
+ - app/views/katello/api/v2/host_collections/update.json.rabl
1024
+ - app/views/katello/api/v2/layouts/collection.json.erb
1025
+ - app/views/katello/api/v2/layouts/index.json.erb
1026
+ - app/views/katello/api/v2/layouts/resource.json.erb
1027
+ - app/views/katello/api/v2/organizations/index.json.rabl
1028
+ - app/views/katello/api/v2/organizations/show.json.rabl
1029
+ - app/views/katello/api/v2/package_groups/backend.json.rabl
1030
+ - app/views/katello/api/v2/package_groups/base.json.rabl
1031
+ - app/views/katello/api/v2/package_groups/index.json.rabl
1032
+ - app/views/katello/api/v2/package_groups/show.json.rabl
1033
+ - app/views/katello/api/v2/packages/backend.json.rabl
1034
+ - app/views/katello/api/v2/packages/base.json.rabl
1035
+ - app/views/katello/api/v2/packages/index.json.rabl
1036
+ - app/views/katello/api/v2/packages/show.json.rabl
1037
+ - app/views/katello/api/v2/ping/server_status.json.rabl
1038
+ - app/views/katello/api/v2/ping/show.json.rabl
1039
+ - app/views/katello/api/v2/ping/version.json.rabl
1040
+ - app/views/katello/api/v2/products/base.json.rabl
1041
+ - app/views/katello/api/v2/products/index.json.rabl
1042
+ - app/views/katello/api/v2/products/repositories.json.rabl
1043
+ - app/views/katello/api/v2/products/show.json.rabl
1044
+ - app/views/katello/api/v2/providers/_provider.json.rabl
1045
+ - app/views/katello/api/v2/providers/index.json.rabl
1046
+ - app/views/katello/api/v2/providers/products.json.rabl
1047
+ - app/views/katello/api/v2/providers/show.json.rabl
1048
+ - app/views/katello/api/v2/puppet_modules/backend.json.rabl
1049
+ - app/views/katello/api/v2/puppet_modules/base.json.rabl
1050
+ - app/views/katello/api/v2/puppet_modules/index.json.rabl
1051
+ - app/views/katello/api/v2/puppet_modules/name.json.rabl
1052
+ - app/views/katello/api/v2/puppet_modules/names.json.rabl
1053
+ - app/views/katello/api/v2/puppet_modules/show.json.rabl
1054
+ - app/views/katello/api/v2/repositories/base.json.rabl
1055
+ - app/views/katello/api/v2/repositories/index.json.rabl
1056
+ - app/views/katello/api/v2/repositories/package_group_categories.json.rabl
1057
+ - app/views/katello/api/v2/repositories/package_groups.json.rabl
1058
+ - app/views/katello/api/v2/repositories/show.json.rabl
1059
+ - app/views/katello/api/v2/repositories/sync.json.rabl
1060
+ - app/views/katello/api/v2/repository_sets/available_repositories.json.rabl
1061
+ - app/views/katello/api/v2/repository_sets/index.json.rabl
1062
+ - app/views/katello/api/v2/repository_sets/show.json.rabl
1063
+ - app/views/katello/api/v2/root/resource_list.json.rabl
1064
+ - app/views/katello/api/v2/subscriptions/base.json.rabl
1065
+ - app/views/katello/api/v2/subscriptions/create.json.rabl
1066
+ - app/views/katello/api/v2/subscriptions/destroy.json.rabl
1067
+ - app/views/katello/api/v2/subscriptions/destroy_all.json.rabl
1068
+ - app/views/katello/api/v2/subscriptions/destroy_by_serial.json.rabl
1069
+ - app/views/katello/api/v2/subscriptions/index.json.rabl
1070
+ - app/views/katello/api/v2/subscriptions/manifest_history.json.rabl
1071
+ - app/views/katello/api/v2/subscriptions/organization_index.json.rabl
1072
+ - app/views/katello/api/v2/subscriptions/show.json.rabl
1073
+ - app/views/katello/api/v2/sync/create.json.rabl
1074
+ - app/views/katello/api/v2/sync/index.json.rabl
1075
+ - app/views/katello/api/v2/sync_plans/available_products.json.rabl
1076
+ - app/views/katello/api/v2/sync_plans/index.json.rabl
1077
+ - app/views/katello/api/v2/sync_plans/show.json.rabl
1078
+ - app/views/katello/api/v2/system_errata/index.json.rabl
1079
+ - app/views/katello/api/v2/system_errata/show.json.rabl
1080
+ - app/views/katello/api/v2/system_errata/system_task.json.rabl
1081
+ - app/views/katello/api/v2/system_packages/system_task.json.rabl
1082
+ - app/views/katello/api/v2/systems/_content.json.rabl
1083
+ - app/views/katello/api/v2/systems/_pool.json.rabl
1084
+ - app/views/katello/api/v2/systems/activate.json.rabl
1085
+ - app/views/katello/api/v2/systems/add_host_collections.json.rabl
1086
+ - app/views/katello/api/v2/systems/available_host_collections.json.rabl
1087
+ - app/views/katello/api/v2/systems/base.json.rabl
1088
+ - app/views/katello/api/v2/systems/content_override.json.rabl
1089
+ - app/views/katello/api/v2/systems/enabled_repos.json.rabl
1090
+ - app/views/katello/api/v2/systems/erratum.json.rabl
1091
+ - app/views/katello/api/v2/systems/events.json.rabl
1092
+ - app/views/katello/api/v2/systems/index.json.rabl
1093
+ - app/views/katello/api/v2/systems/package.json.rabl
1094
+ - app/views/katello/api/v2/systems/package_profile.json.rabl
1095
+ - app/views/katello/api/v2/systems/pools.json.rabl
1096
+ - app/views/katello/api/v2/systems/product_content.json.rabl
1097
+ - app/views/katello/api/v2/systems/regenerate_identity_certificates.json.rabl
1098
+ - app/views/katello/api/v2/systems/releases.json.rabl
1099
+ - app/views/katello/api/v2/systems/remove_host_collections.json.rabl
1100
+ - app/views/katello/api/v2/systems/show.json.rabl
1101
+ - app/views/katello/api/v2/systems/subscriptions.json.rabl
1102
+ - app/views/katello/api/v2/systems/upload_package_profile.json.rabl
1103
+ - app/views/katello/api/v2/systems_bulk_actions/applicable_errata.json.rabl
1104
+ - app/views/katello/api/v2/systems_bulk_actions/available_incremental_updates.json.rabl
1105
+ - app/views/katello/api/v2/systems_bulk_actions/erratum.json.rabl
1106
+ - app/views/katello/api/v2/systems_bulk_actions/job.json.rabl
1107
+ - app/views/katello/api/v2/tasks/index.json.rabl
1108
+ - app/views/katello/api/v2/tasks/show.json.rabl
1109
+ - app/views/katello/api/v2/tasks/task_status_show.json.rabl
1110
+ - app/views/katello/api/v2/uebercerts/show.json.rabl
1111
+ - app/views/katello/errata_mailer/_erratum.html.erb
1112
+ - app/views/katello/errata_mailer/_host_dashboard.html.erb
1113
+ - app/views/katello/errata_mailer/host_errata.html.erb
1114
+ - app/views/katello/errata_mailer/host_errata.text.erb
1115
+ - app/views/katello/errata_mailer/promote_errata.html.erb
1116
+ - app/views/katello/errata_mailer/promote_errata.text.erb
1117
+ - app/views/katello/errata_mailer/sync_errata.html.erb
1118
+ - app/views/katello/errata_mailer/sync_errata.text.erb
1119
+ - app/views/katello/layouts/katello.html.erb
1120
+ - app/views/katello/providers/redhat/_enable_errors.html.erb
1121
+ - app/views/katello/providers/redhat/_errors.html.erb
1122
+ - app/views/katello/providers/redhat/_repo_sets.html.erb
1123
+ - app/views/katello/providers/redhat/_repos.html.erb
1124
+ - app/views/katello/providers/redhat/_tab.html.erb
1125
+ - app/views/katello/providers/redhat/show.html.erb
1126
+ - app/views/katello/sync_management/_children.html.erb
1127
+ - app/views/katello/sync_management/_controls.html.erb
1128
+ - app/views/katello/sync_management/_product.html.erb
1129
+ - app/views/katello/sync_management/_products.html.erb
1130
+ - app/views/katello/sync_management/_repo.html.erb
1131
+ - app/views/katello/sync_management/_sync_plans.html.erb
1132
+ - app/views/katello/sync_management/index.html.erb
1133
+ - ca/redhat-uep.pem
1134
+ - config/compass.rb
1135
+ - config/initializers/active_record.rb
1136
+ - config/initializers/active_resource.rb
1137
+ - config/initializers/inflections.rb
1138
+ - config/initializers/mime_types.rb
1139
+ - config/initializers/monkeys.rb
1140
+ - config/initializers/multipart_json_fix.rb
1141
+ - config/initializers/openstruct.rb
1142
+ - config/initializers/rabl_init.rb
1143
+ - config/initializers/runcible.rb
1144
+ - config/katello.yaml.example
1145
+ - config/katello.yml
1146
+ - config/katello_defaults.yml
1147
+ - config/locales/README
1148
+ - config/locales/bn.yml
1149
+ - config/locales/compare_upstream.sh
1150
+ - config/locales/cs.yml
1151
+ - config/locales/de.yml
1152
+ - config/locales/en.yml
1153
+ - config/locales/es.yml
1154
+ - config/locales/fr.yml
1155
+ - config/locales/gu.yml
1156
+ - config/locales/hi.yml
1157
+ - config/locales/it.yml
1158
+ - config/locales/ja.yml
1159
+ - config/locales/kn.yml
1160
+ - config/locales/ko.yml
1161
+ - config/locales/mr.yml
1162
+ - config/locales/or.yml
1163
+ - config/locales/pa.yml
1164
+ - config/locales/pt-BR.yml
1165
+ - config/locales/pt.yml
1166
+ - config/locales/ru.yml
1167
+ - config/locales/ta.yml
1168
+ - config/locales/te.yml
1169
+ - config/locales/update.sh
1170
+ - config/locales/zh-CN.yml
1171
+ - config/locales/zh-TW.yml
1172
+ - config/routes.rb
1173
+ - config/routes/api/rhsm.rb
1174
+ - config/routes/api/v2.rb
1175
+ - config/routes/mount_engine.rb
1176
+ - config/routes/overrides.rb
1177
+ - db/migrate/20131014135042_katello_tables.rb
1178
+ - db/migrate/20131014225132_add_users_fields.rb
1287
1179
  - db/migrate/20131016124255_add_foreign_keys_engine.rb
1288
- - db/migrate/20150613134559_add_rpm.rb
1289
- - db/migrate/20150901213759_remove_distributors.rb
1290
1180
  - db/migrate/20131120225132_add_organization_fields.rb
1291
- - db/migrate/20140318174203_drop_cdn_import_success_column.rb
1292
- - db/migrate/20140716211853_repo_rename_feed_to_url.rb
1293
- - db/migrate/20140709150428_remove_deletion_task_id_from_taxonomies.rb
1181
+ - db/migrate/20131216212502_add_quantity_to_katello_key_pools.rb
1182
+ - db/migrate/20131216212621_add_cp_id_to_katello_activation_keys.rb
1183
+ - db/migrate/20131218174203_drop_katello_key_pools_table.rb
1184
+ - db/migrate/20140110000001_update_environments_add_katello_id.rb
1185
+ - db/migrate/20140117160939_refactor_content_views.rb
1186
+ - db/migrate/20140206200439_create_content_view_puppet_modules.rb
1187
+ - db/migrate/20140212131812_create_content_view_package_filter_rules.rb
1188
+ - db/migrate/20140212143454_create_content_view_package_group_filter_rules.rb
1189
+ - db/migrate/20140212143642_create_content_view_erratum_filter_rules.rb
1190
+ - db/migrate/20140217145303_remove_changeset.rb
1294
1191
  - db/migrate/20140217160132_create_content_view_history.rb
1192
+ - db/migrate/20140222022712_remove_provider_discovery.rb
1295
1193
  - db/migrate/20140305101813_allow_null_for_repository_content_id.rb
1296
- - db/migrate/20140425155126_add_host_id_to_system.rb
1297
- - db/migrate/20150603045418_remove_user_fields.rb
1298
- - db/migrate/20150602153757_remove_notices.rb
1194
+ - db/migrate/20140306132108_create_content_view_puppet_environments.rb
1195
+ - db/migrate/20140310102051_repository_add_checksum_type.rb
1196
+ - db/migrate/20140318174203_drop_cdn_import_success_column.rb
1197
+ - db/migrate/20140325185413_create_content_view_foreign_keys.rb
1198
+ - db/migrate/20140404122011_drop_repositories_enabled_column.rb
1299
1199
  - db/migrate/20140411134235_update_content_view_description_type.rb
1300
1200
  - db/migrate/20140414214152_allow_null_content_view_to_activation_key.rb
1301
- - db/migrate/20140610083129_add_pulp_proxy_to_host.rb
1201
+ - db/migrate/20140418124032_add_next_version_to_katello_content_views.rb
1302
1202
  - db/migrate/20140422000001_update_products_add_organization.rb
1303
- - db/migrate/20140624184401_remove_label_from_activation_key.rb
1304
- - db/migrate/20141215213720_track_version_components.rb
1305
- - db/migrate/20150813185339_create_subscriptions.rb
1306
- - db/migrate/20140110000001_update_environments_add_katello_id.rb
1307
- - db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
1308
- - db/migrate/20140325185413_create_content_view_foreign_keys.rb
1309
- - db/migrate/20140626055258_add_missing_foreign_keys.rb
1310
- - db/migrate/20140928210618_add_description_to_content_view_versions.rb
1311
- - db/migrate/20140807175457_remove_hidden_column_from_user.rb
1312
1203
  - db/migrate/20140423191446_add_anonymous_providers_to_orgs.rb
1313
- - db/migrate/20140531160506_package_filter_add_original_packages.rb
1314
- - db/migrate/20141222151001_add_host_content_view_environment.rb
1315
- - db/migrate/20131014135042_katello_tables.rb
1204
+ - db/migrate/20140425155126_add_host_id_to_system.rb
1205
+ - db/migrate/20140429193743_add_release_version_to_activation_keys.rb
1206
+ - db/migrate/20140502164009_rename_system_groups_to_host_collections.rb
1207
+ - db/migrate/20140502174412_update_host_collections_foreign_keys.rb
1316
1208
  - db/migrate/20140514165842_create_capsule_lifecycle_environments.rb
1317
- - db/migrate/20140418124032_add_next_version_to_katello_content_views.rb
1318
- - db/migrate/20141015173220_add_docker_image_fields.rb
1319
- - db/migrate/20140212131812_create_content_view_package_filter_rules.rb
1209
+ - db/migrate/20140531160506_package_filter_add_original_packages.rb
1210
+ - db/migrate/20140610083129_add_pulp_proxy_to_host.rb
1211
+ - db/migrate/20140610154745_content_view_puppet_environment_id.rb
1212
+ - db/migrate/20140610170142_add_uuid_to_content_view_package_group_filter_rule.rb
1320
1213
  - db/migrate/20140617100300_add_description_to_content_view_filter_rules.rb
1321
- - db/migrate/20131216212621_add_cp_id_to_katello_activation_keys.rb
1322
- - db/migrate/20141204203609_add_default_value_to_auto_attach.rb
1323
- - db/migrate/20141124182205_content_view_version_add_minor.rb
1324
- - db/migrate/20150507131145_update_composite_default_for_content_view.rb
1325
- - db/migrate/20141203123206_add_timestamps_to_repository_join_tables.rb
1326
- - db/migrate/20131014225132_add_users_fields.rb
1327
- - db/migrate/20140821084214_add_sync_plan_enabled_to_sync_plan.rb
1328
- - db/migrate/20150902164543_remove_apply_info_task_id_from_taxonomies.rb
1329
- - db/migrate/20150423134004_add_content_host_id_to_smart_proxy.rb
1330
- - db/migrate/20150908222711_drop_marketing_engineering_products.rb
1331
1214
  - db/migrate/20140623103442_drop_taxonomies_owner_auto_attach_all_systems_task_id_column.rb
1332
- - db/migrate/20150717142559_add_distributions_to_repository.rb
1333
- - db/migrate/20140502174412_update_host_collections_foreign_keys.rb
1334
- - db/migrate/20140217145303_remove_changeset.rb
1335
- - db/migrate/20140502164009_rename_system_groups_to_host_collections.rb
1336
- - db/migrate/20141210173220_create_docker_tables.rb
1337
- - db/migrate/20140212143642_create_content_view_erratum_filter_rules.rb
1338
- - db/migrate/20150109012657_add_capsule_id_to_container.rb
1339
1215
  - db/migrate/20140624183938_add_foreign_keys_for_organizations.rb
1216
+ - db/migrate/20140624184401_remove_label_from_activation_key.rb
1217
+ - db/migrate/20140626055258_add_missing_foreign_keys.rb
1218
+ - db/migrate/20140626204657_add_unlimited_to_activation_keys.rb
1219
+ - db/migrate/20140626204902_add_unlimited_to_host_collection.rb
1220
+ - db/migrate/20140707203534_location_add_katello_default.rb
1221
+ - db/migrate/20140709150428_remove_deletion_task_id_from_taxonomies.rb
1222
+ - db/migrate/20140716211853_repo_rename_feed_to_url.rb
1223
+ - db/migrate/20140807175457_remove_hidden_column_from_user.rb
1340
1224
  - db/migrate/20140811141742_remove_delayed_jobs.rb
1341
- - db/migrate/20140610170142_add_uuid_to_content_view_package_group_filter_rule.rb
1342
- - db/migrate/20150602153753_remove_help_tips.rb
1343
- - db/migrate/20140222022712_remove_provider_discovery.rb
1344
- - db/migrate/20141031150814_add_tag_repository_id_index.rb
1345
- - db/migrate/20140117160939_refactor_content_views.rb
1346
- - db/migrate/20140429193743_add_release_version_to_activation_keys.rb
1347
- - db/migrate/20141003210742_add_docker_container_registry_url_to_providers.rb
1348
- - db/migrate/20150602153754_remove_search_histories.rb
1349
- - db/migrate/20140306132108_create_content_view_puppet_environments.rb
1350
- - db/migrate/20150623135424_create_package_groups.rb
1225
+ - db/migrate/20140821084214_add_sync_plan_enabled_to_sync_plan.rb
1226
+ - db/migrate/20140928210618_add_description_to_content_view_versions.rb
1351
1227
  - db/migrate/20140930170628_add_errata.rb
1352
- - db/migrate/20140212143454_create_content_view_package_group_filter_rules.rb
1353
- - db/migrate/20131218174203_drop_katello_key_pools_table.rb
1228
+ - db/migrate/20141001170628_add_system_repository.rb
1229
+ - db/migrate/20141003210742_add_docker_container_registry_url_to_providers.rb
1230
+ - db/migrate/20141015173220_add_docker_image_fields.rb
1231
+ - db/migrate/20141031150814_add_tag_repository_id_index.rb
1354
1232
  - db/migrate/20141112180709_add_auto_attach_to_activation_keys.rb
1355
- - db/migrate/20140404122011_drop_repositories_enabled_column.rb
1356
- - db/migrate/20150606021722_create_puppet_modules.rb
1357
- - db/migrate/20150611140455_remove_default_and_custom_info.rb
1358
- - db/migrate/20140610154745_content_view_puppet_environment_id.rb
1359
- - db/migrate/20150602153756_remove_user_notices.rb
1360
- - db/migrate/20150505180030_change_errata_timestamps_to_dates.rb
1233
+ - db/migrate/20141124182205_content_view_version_add_minor.rb
1234
+ - db/migrate/20141203123206_add_timestamps_to_repository_join_tables.rb
1235
+ - db/migrate/20141204203609_add_default_value_to_auto_attach.rb
1236
+ - db/migrate/20141209103005_disown_foreman_templates.rb
1237
+ - db/migrate/20141210173220_create_docker_tables.rb
1238
+ - db/migrate/20141215213720_track_version_components.rb
1239
+ - db/migrate/20141222151001_add_host_content_view_environment.rb
1240
+ - db/migrate/20150109012657_add_capsule_id_to_container.rb
1241
+ - db/migrate/20150114225023_add_upstream_name_to_repository.rb
1242
+ - db/migrate/20150119153452_update_promote_errata_email_description.rb
1361
1243
  - db/migrate/20150224083608_remove_docker_registry_url.rb
1362
1244
  - db/migrate/20150227213850_change_descriptions_to_text_fields.rb
1245
+ - db/migrate/20150423134004_add_content_host_id_to_smart_proxy.rb
1246
+ - db/migrate/20150505180030_change_errata_timestamps_to_dates.rb
1247
+ - db/migrate/20150507131145_update_composite_default_for_content_view.rb
1248
+ - db/migrate/20150602153753_remove_help_tips.rb
1249
+ - db/migrate/20150602153754_remove_search_histories.rb
1363
1250
  - db/migrate/20150602153755_remove_search_favorites.rb
1364
- - db/migrate/20141001170628_add_system_repository.rb
1365
- - db/migrate/20150119153452_update_promote_errata_email_description.rb
1366
- - db/migrate/20150114225023_add_upstream_name_to_repository.rb
1251
+ - db/migrate/20150602153756_remove_user_notices.rb
1252
+ - db/migrate/20150602153757_remove_notices.rb
1253
+ - db/migrate/20150603045418_remove_user_fields.rb
1254
+ - db/migrate/20150606021722_create_puppet_modules.rb
1255
+ - db/migrate/20150611140455_remove_default_and_custom_info.rb
1256
+ - db/migrate/20150613134559_add_rpm.rb
1257
+ - db/migrate/20150623135424_create_package_groups.rb
1258
+ - db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
1259
+ - db/migrate/20150717142559_add_distributions_to_repository.rb
1260
+ - db/migrate/20150813185339_create_subscriptions.rb
1261
+ - db/migrate/20150901213759_remove_distributors.rb
1262
+ - db/migrate/20150902164543_remove_apply_info_task_id_from_taxonomies.rb
1263
+ - db/migrate/20150908222711_drop_marketing_engineering_products.rb
1264
+ - db/migrate/20151015152947_add_virt_only_to_katello_pools.rb
1367
1265
  - db/seeds.rb
1368
- - ca/redhat-uep.pem
1369
- - config/routes/mount_engine.rb
1370
- - config/routes/api/rhsm.rb
1371
- - config/routes/api/v2.rb
1372
- - config/routes/overrides.rb
1373
- - config/locales/pa.yml
1374
- - config/locales/es.yml
1375
- - config/locales/fr.yml
1376
- - config/locales/en.yml
1377
- - config/locales/ko.yml
1378
- - config/locales/pt.yml
1379
- - config/locales/de.yml
1380
- - config/locales/compare_upstream.sh
1381
- - config/locales/ja.yml
1382
- - config/locales/zh-TW.yml
1383
- - config/locales/ru.yml
1384
- - config/locales/or.yml
1385
- - config/locales/mr.yml
1386
- - config/locales/kn.yml
1387
- - config/locales/cs.yml
1388
- - config/locales/ta.yml
1389
- - config/locales/te.yml
1390
- - config/locales/hi.yml
1391
- - config/locales/it.yml
1392
- - config/locales/update.sh
1393
- - config/locales/README
1394
- - config/locales/pt-BR.yml
1395
- - config/locales/bn.yml
1396
- - config/locales/gu.yml
1397
- - config/locales/zh-CN.yml
1398
- - config/katello.yml
1399
- - config/compass.rb
1400
- - config/katello.yaml.example
1401
- - config/routes.rb
1402
- - config/katello_defaults.yml
1403
- - config/initializers/active_resource.rb
1404
- - config/initializers/openstruct.rb
1405
- - config/initializers/mime_types.rb
1406
- - config/initializers/inflections.rb
1407
- - config/initializers/active_record.rb
1408
- - config/initializers/runcible.rb
1409
- - config/initializers/monkeys.rb
1410
- - config/initializers/multipart_json_fix.rb
1411
- - config/initializers/rabl_init.rb
1412
- - locale/bn/katello.po
1413
- - locale/en/katello.po
1414
- - locale/cs/katello.po
1415
- - locale/Makefile
1416
- - locale/pt/katello.po
1417
- - locale/mr/katello.po
1418
- - locale/te/katello.po
1419
- - locale/ta/katello.po
1420
- - locale/de/katello.po
1421
- - locale/ko/katello.po
1422
- - locale/katello.pot
1423
- - locale/or/katello.po
1424
- - locale/gu/katello.po
1425
- - locale/action_names.rb
1426
- - locale/ja/katello.po
1427
- - locale/it/katello.po
1428
- - locale/hi/katello.po
1429
- - locale/pt_BR/katello.po
1430
- - locale/zanata.xml
1431
- - locale/README
1432
- - locale/pa/katello.po
1433
- - locale/es/katello.po
1434
- - locale/fr/katello.po
1435
- - locale/kn/katello.po
1436
- - locale/zh_TW/katello.po
1437
- - locale/zh_CN/katello.po
1438
- - locale/ru/katello.po
1439
- - LICENSE.txt
1440
- - README.md
1441
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot
1442
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js
1443
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/README
1444
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po
1445
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po
1446
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po
1447
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po
1448
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po
1449
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po
1450
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po
1451
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po
1452
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po
1453
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po
1454
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package-details.controller.js
1455
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/packages-details-files.html
1456
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/packages-details-dependencies.html
1457
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/packages-details-repositories.html
1458
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/packages-details.html
1459
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/packages-details-info.html
1460
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package-details-repositories.controller.js
1461
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/views/packages-table-collapsed.html
1462
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/views/packages-table-full.html
1463
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/views/packages.html
1464
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/package.factory.js
1465
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.controller.js
1466
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.routes.js
1467
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.module.js
1468
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.controller.js
1469
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-modules-details-content-views.controller.js
1470
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-modules-details-repositories.controller.js
1471
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-modules-details.controller.js
1472
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-modules-details-repositories.html
1473
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-modules-details-content-views.html
1474
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-modules-details-info.html
1475
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-modules-details.html
1476
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules.html
1477
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules-table-collapsed.html
1478
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules-table-full.html
1479
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-module.factory.js
1480
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.module.js
1481
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.routes.js
1482
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/new/views/repository-new.html
1483
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/new/new-repository.controller.js
1484
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/details/repository-details-info.controller.js
1485
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/details/views/repository-manage-packages.html
1486
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/details/views/repository-manage-puppet-modules.html
1487
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/details/views/repository-info.html
1488
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/details/views/repository-manage-docker-images.html
1489
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/details/views/repository-manage-package-groups.html
1490
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/details/repository-details-manage-content.controller.js
1491
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/repositories.module.js
1492
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/repository.factory.js
1493
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/new/new-host-collection.controller.js
1494
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/new/views/host-collection-new.html
1495
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/new/views/host-collection-new-form.html
1496
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/new/host-collection-form.controller.js
1497
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-add-content-hosts.controller.js
1498
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
1499
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-content-hosts.html
1500
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-actions.html
1501
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-details.html
1502
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-add-content-hosts.html
1503
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-content-hosts-list.html
1504
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js
1505
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-content-hosts.controller.js
1506
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/views/host-collections-table-full.html
1507
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/views/host-collections-table-collapsed.html
1508
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html
1509
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
1510
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.module.js
1511
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collection.factory.js
1512
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/capsules/capsules.module.js
1513
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/capsules/capsule.factory.js
1514
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js
1515
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-images/docker-image.factory.js
1516
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-images/docker-images.module.js
1517
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/subscription-type.directive.js
1518
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/subscription-associations-activation-keys.controller.js
1519
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/subscription-associations-content-hosts.controller.js
1520
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/views/subscription-products.html
1521
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/views/subscription-associations-activation-keys.html
1522
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/views/subscription-details.html
1523
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/views/subscription-info.html
1524
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/views/subscription-associations-content-hosts.html
1525
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/subscription-product-details.controller.js
1526
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/subscription-details.controller.js
1527
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/subscription-products.controller.js
1528
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/subscriptions.html
1529
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/subscriptions-delete-bulk.html
1530
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/subscriptions-table-full.html
1531
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/subscription-type.html
1532
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/subscriptions-table-collapsed.html
1533
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/subscriptionConsumed.filter.js
1534
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/subscriptionAttachAmountFilter.filter.js
1535
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/grouped.filter.js
1536
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/subscriptions-helper.service.js
1537
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/manifest-details.controller.js
1538
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/views/manifest-import.html
1539
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/views/manifest-details.html
1540
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/views/manifest-import-history.html
1541
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/views/manifest.html
1542
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/manifest.controller.js
1543
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/manifest-import.controller.js
1544
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/manifest-history.controller.js
1545
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/subscriptions.factory.js
1546
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/subscriptions.module.js
1547
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/subscriptions.controller.js
1548
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/package-groups/package-group.factory.js
1549
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/package-groups/package-groups.module.js
1550
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/organization.factory.js
1551
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/organizations.routes.js
1552
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/views/organization-selector.html
1553
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/organization-selector.controller.js
1554
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/organizations.module.js
1555
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/check-current-organization.run.js
1556
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.controller.js
1557
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.module.js
1558
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tags-details.html
1559
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/docker-tags-details.controller.js
1560
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags-table-full.html
1561
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html
1562
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags-table-collapsed.html
1563
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.factory.js
1564
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
1266
+ - engines/bastion_katello/README.md
1267
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activation-key.factory.js
1268
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activation-keys.controller.js
1269
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activation-keys.module.js
1270
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activationKeyConsumed.filter.js
1271
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-add-host-collections.controller.js
1272
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-add-subscriptions.controller.js
1273
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-associations.controller.js
1274
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details-info.controller.js
1275
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js
1276
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-host-collections.controller.js
1277
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-product-details.controller.js
1278
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-products.controller.js
1279
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-subscriptions.controller.js
1280
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-add-subscriptions.html
1281
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-associations-content-hosts.html
1282
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
1283
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-host-collections-table.html
1284
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-host-collections.html
1285
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
1286
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-products.html
1287
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions-list.html
1288
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html
1289
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/new/new-activation-key.controller.js
1290
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/new/views/activation-key-new.html
1291
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys-table-collapsed.html
1292
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys-table-full.html
1293
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys.html
1294
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion-katello-bootstrap.js
1565
1295
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion_katello.js
1566
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/erratum.factory.js
1567
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/errata.module.js
1568
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/errata-details.html
1569
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/errata-details-content-hosts.html
1570
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/errata-details-repositories.html
1571
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/errata-details-info.html
1572
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/errata-details.controller.js
1573
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/errata-details-repositories.controller.js
1574
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/errata-content-hosts.controller.js
1575
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/errata-type.filter.js
1576
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata.html
1577
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-select-content-hosts.html
1578
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-table-full.html
1579
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-task-details.html
1580
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-tasks-list.html
1581
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-tasks.html
1582
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
1583
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-table-collapsed.html
1584
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-counts.html
1585
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata.html
1586
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/errata-severity.filter.js
1587
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/errata.routes.js
1588
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js
1589
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/errata.controller.js
1590
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/errata-counts.directive.js
1591
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.module.js
1592
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host.factory.js
1296
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/capsules/capsule.factory.js
1297
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/capsules/capsules.module.js
1298
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-action-environment.controller.js
1299
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-action-errata.controller.js
1300
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-action-host-collections.controller.js
1301
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-action-packages.controller.js
1302
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-action-subscriptions.controller.js
1303
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-action.controller.js
1304
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/bulk-actions-environment.html
1305
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/bulk-actions-errata.html
1306
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/bulk-actions-host-collections.html
1307
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/bulk-actions-packages.html
1308
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/bulk-actions-subscriptions.html
1309
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/bulk-actions.html
1310
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/errata-content-hosts.html
1311
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/errata-details.html
1312
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-erratum.factory.js
1593
1313
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-events.controller.js
1594
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-base-subscriptions.controller.js
1314
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-package.factory.js
1315
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register.controller.js
1316
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-status.controller.js
1317
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host.factory.js
1318
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts-helper.service.js
1319
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js
1320
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.module.js
1321
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-errata.controller.js
1322
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages.controller.js
1323
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
1324
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages.html
1325
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
1326
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-add-host-collections.controller.js
1595
1327
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-add-subscriptions.controller.js
1328
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-base-subscriptions.controller.js
1329
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details-info.controller.js
1330
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js
1331
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-host-collections.controller.js
1332
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-product-details.controller.js
1333
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-products.controller.js
1596
1334
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-subscriptions.controller.js
1597
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-add-host-collections.controller.js
1598
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/host-collections-table.html
1335
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-add-subscriptions.html
1336
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
1337
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-events.html
1599
1338
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1600
1339
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-products.html
1601
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
1602
1340
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-provisioning-info.html
1603
1341
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions-list.html
1604
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-add-subscriptions.html
1605
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-events.html
1342
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
1606
1343
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-tasks.html
1607
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/partials/content-host-detail-value.html
1608
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/partials/content-host-detail-object.html
1609
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
1344
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/host-collections-table.html
1610
1345
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/host-collections.html
1611
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details-info.controller.js
1612
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-host-collections.controller.js
1613
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js
1614
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-product-details.controller.js
1615
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-products.controller.js
1616
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-package.factory.js
1346
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/partials/content-host-detail-object.html
1347
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/partials/content-host-detail-value.html
1617
1348
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts-table-collapsed.html
1618
1349
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts-table-full.html
1619
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register.html
1620
1350
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
1621
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-status.controller.js
1622
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts-helper.service.js
1623
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages.html
1624
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
1625
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
1626
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-errata.controller.js
1627
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages.controller.js
1628
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js
1629
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-erratum.factory.js
1630
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/bulk-actions-host-collections.html
1631
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/errata-details.html
1632
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/errata-content-hosts.html
1633
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/bulk-actions-environment.html
1634
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/bulk-actions.html
1635
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/bulk-actions-errata.html
1636
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/bulk-actions-packages.html
1637
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/bulk-actions-subscriptions.html
1638
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-action-host-collections.controller.js
1639
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-action-errata.controller.js
1640
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-action-packages.controller.js
1641
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-action.controller.js
1642
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-action-subscriptions.controller.js
1643
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-action-environment.controller.js
1644
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register.controller.js
1645
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion-katello-bootstrap.js
1646
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/new/new-activation-key.controller.js
1647
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/new/views/activation-key-new.html
1648
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details-info.controller.js
1649
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-add-subscriptions.controller.js
1650
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-host-collections.html
1651
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions-list.html
1652
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-associations-content-hosts.html
1653
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-products.html
1654
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html
1655
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-add-subscriptions.html
1656
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
1657
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-host-collections-table.html
1658
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
1659
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-products.controller.js
1660
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js
1661
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-add-host-collections.controller.js
1662
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-product-details.controller.js
1663
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-associations.controller.js
1664
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-subscriptions.controller.js
1665
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-host-collections.controller.js
1666
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activation-key.factory.js
1667
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys-table-full.html
1668
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys-table-collapsed.html
1669
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys.html
1670
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activation-keys.module.js
1671
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activation-keys.controller.js
1672
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activationKeyConsumed.filter.js
1673
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/new-sync-plan.controller.js
1674
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan.html
1675
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
1676
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-add-products.controller.js
1677
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html
1678
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-products.html
1679
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-info.html
1680
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-products-table.html
1681
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-details.controller.js
1682
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-details-info.controller.js
1683
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-products.controller.js
1684
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/views/sync-plans-table-full.html
1685
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/views/sync-plans-table-collapsed.html
1686
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/views/sync-plans.html
1687
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/sync-plans.controller.js
1688
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/sync-plan.factory.js
1689
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/sync-plans.module.js
1690
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1691
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js
1692
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js
1693
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module.factory.js
1694
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
1695
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html
1696
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html
1697
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-versions.controller.js
1698
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-names.controller.js
1699
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js
1700
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-composite-available-content-views.controller.js
1701
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
1351
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register.html
1352
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-view.factory.js
1353
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js
1354
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.module.js
1355
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js
1356
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js
1357
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js
1358
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js
1359
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js
1360
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js
1361
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js
1362
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
1363
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
1364
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-breadcrumb.html
1365
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
1366
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
1367
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
1702
1368
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js
1703
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
1704
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-composite-available-content-views.html
1705
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-composite-content-views-list.html
1706
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
1707
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
1708
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
1709
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
1710
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html
1711
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-composite.html
1712
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
1713
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
1714
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js
1369
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-puppet-modules.controller.js
1715
1370
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js
1716
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
1717
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js
1718
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js
1719
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js
1720
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js
1371
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-composite-available-content-views.controller.js
1372
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-composite-content-views-list.controller.js
1373
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js
1374
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js
1721
1375
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js
1722
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js
1723
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-filter.controller.js
1724
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
1376
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js
1377
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js
1378
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js
1379
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
1380
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js
1381
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js
1725
1382
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js
1726
1383
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js
1384
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js
1385
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js
1386
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js
1387
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
1727
1388
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
1728
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
1729
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
1730
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
1731
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html
1732
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
1733
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html
1389
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js
1390
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js
1391
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js
1392
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js
1393
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
1394
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js
1395
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-filter.controller.js
1396
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js
1397
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js
1398
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html
1399
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
1734
1400
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html
1735
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
1736
1401
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
1737
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
1402
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html
1738
1403
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html
1739
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html
1404
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
1405
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
1406
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
1407
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
1408
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html
1409
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
1410
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html
1740
1411
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html
1741
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html
1742
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js
1743
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js
1744
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js
1745
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js
1746
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js
1747
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js
1748
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js
1749
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js
1750
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js
1751
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js
1752
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js
1753
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
1754
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js
1755
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-puppet-modules.controller.js
1756
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-composite-content-views-list.controller.js
1757
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-view.factory.js
1758
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.module.js
1759
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html
1760
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views-table-full.html
1761
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views-table-collapsed.html
1762
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js
1763
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js
1764
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
1765
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
1766
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-breadcrumb.html
1767
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
1768
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
1769
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
1770
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js
1771
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js
1772
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js
1773
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js
1774
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js
1775
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js
1776
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html
1412
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js
1413
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js
1414
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
1415
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-names.controller.js
1416
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-versions.controller.js
1417
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module.factory.js
1418
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js
1419
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
1420
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html
1421
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html
1422
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-composite-available-content-views.html
1423
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-composite-content-views-list.html
1424
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-composite.html
1425
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html
1426
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
1427
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
1428
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
1429
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
1430
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
1431
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
1432
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
1433
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js
1434
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1435
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js
1436
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js
1437
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.factory.js
1438
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-versions.module.js
1777
1439
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html
1778
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html
1779
1440
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html
1780
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
1781
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-puppet-modules.html
1441
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html
1782
1442
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
1783
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
1443
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html
1784
1444
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html
1785
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js
1786
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-versions.module.js
1787
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js
1788
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.factory.js
1789
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/product-form.controller.js
1790
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/new-product.controller.js
1791
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/views/product-new-form.html
1792
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/views/product-new.html
1793
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-details-info.controller.js
1794
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js
1795
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/views/product-details.html
1796
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/views/product-repositories.html
1797
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/views/product-tasks.html
1798
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/views/product-info.html
1799
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/partials/sync-status.html
1800
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-details.controller.js
1801
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.controller.js
1802
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-base.html
1803
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html
1804
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html
1805
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery.controller.js
1806
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-form.controller.js
1807
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products.html
1808
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products-table-collapsed.html
1809
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products-table-full.html
1810
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/partials/product-table-sync-status.html
1811
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/product.factory.js
1812
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-action.controller.js
1813
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-action-sync-plan.controller.js
1814
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/bulk-actions.html
1815
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/bulk-actions-sync.html
1816
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/bulk-actions-sync-plan.html
1817
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-action-sync.controller.js
1818
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.module.js
1819
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.module.js
1820
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js
1445
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-puppet-modules.html
1446
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
1447
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
1448
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views-table-collapsed.html
1449
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views-table-full.html
1450
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html
1451
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-images/docker-image.factory.js
1452
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-images/docker-images.module.js
1453
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/docker-tags-details.controller.js
1454
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tags-details.html
1455
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.controller.js
1456
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.factory.js
1457
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.module.js
1458
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
1459
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags-table-collapsed.html
1460
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags-table-full.html
1461
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html
1462
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js
1821
1463
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js
1822
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-repositories.html
1823
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-packages.html
1464
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js
1465
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
1824
1466
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html
1825
1467
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-docker.html
1826
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
1827
1468
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
1828
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html
1469
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-packages.html
1829
1470
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-puppet-modules.html
1830
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js
1831
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html
1832
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/new-environment.html
1833
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/new-environment.controller.js
1471
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-repositories.html
1472
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html
1834
1473
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environment.factory.js
1474
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js
1475
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.module.js
1835
1476
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js
1836
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js
1837
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/new/new-gpg-key.controller.js
1838
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/new/views/gpg-key-new.html
1839
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/views/gpg-key-info.html
1477
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/new-environment.controller.js
1478
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html
1479
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/new-environment.html
1480
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js
1481
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/errata-content-hosts.controller.js
1482
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/errata-details-repositories.controller.js
1483
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/errata-details.controller.js
1484
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/errata-details-content-hosts.html
1485
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/errata-details-info.html
1486
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/errata-details-repositories.html
1487
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/errata-details.html
1488
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/errata-counts.directive.js
1489
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/errata-severity.filter.js
1490
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/errata-type.filter.js
1491
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/errata.controller.js
1492
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/errata.module.js
1493
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/errata.routes.js
1494
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/erratum.factory.js
1495
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
1496
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-select-content-hosts.html
1497
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata.html
1498
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-counts.html
1499
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-table-collapsed.html
1500
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-table-full.html
1501
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-task-details.html
1502
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-tasks-list.html
1503
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-tasks.html
1504
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata.html
1505
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/gpg-key-details-info.controller.js
1506
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/gpg-key-details.controller.js
1840
1507
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/views/gpg-key-details.html
1508
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/views/gpg-key-info.html
1841
1509
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/views/gpg-key-products.html
1842
1510
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/views/gpg-key-repositories.html
1843
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/gpg-key-details-info.controller.js
1844
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/gpg-key-details.controller.js
1845
1511
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/gpg-key.factory.js
1846
1512
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/gpg-keys.controller.js
1513
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/gpg-keys.module.js
1514
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/new/new-gpg-key.controller.js
1515
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/new/views/gpg-key-new.html
1847
1516
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/views/gpg-keys-table-collapsed.html
1848
1517
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/views/gpg-keys-table-full.html
1849
1518
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/views/gpg-keys.html
1850
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/gpg-keys.module.js
1851
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/tasks-nutupane.factory.js
1852
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task.factory.js
1519
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-add-content-hosts.controller.js
1520
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-content-hosts.controller.js
1521
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js
1522
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-actions.html
1523
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-add-content-hosts.html
1524
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-content-hosts-list.html
1525
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-content-hosts.html
1526
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-details.html
1527
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
1528
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collection.factory.js
1529
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
1530
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.module.js
1531
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/new/host-collection-form.controller.js
1532
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/new/new-host-collection.controller.js
1533
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/new/views/host-collection-new-form.html
1534
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/new/views/host-collection-new.html
1535
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/views/host-collections-table-collapsed.html
1536
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/views/host-collections-table-full.html
1537
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html
1538
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/README
1539
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot
1540
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po
1541
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po
1542
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po
1543
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po
1544
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po
1545
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po
1546
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po
1547
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po
1548
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po
1549
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po
1550
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js
1551
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js
1552
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/check-current-organization.run.js
1553
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/organization-selector.controller.js
1554
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/organization.factory.js
1555
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/organizations.module.js
1556
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/organizations.routes.js
1557
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/views/organization-selector.html
1558
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/package-groups/package-group.factory.js
1559
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/package-groups/package-groups.module.js
1560
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package-details-repositories.controller.js
1561
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package-details.controller.js
1562
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/packages-details-dependencies.html
1563
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/packages-details-files.html
1564
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/packages-details-info.html
1565
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/packages-details-repositories.html
1566
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/packages-details.html
1567
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/package.factory.js
1568
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.controller.js
1569
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.module.js
1570
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.routes.js
1571
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/views/packages-table-collapsed.html
1572
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/views/packages-table-full.html
1573
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/views/packages.html
1574
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-action-sync-plan.controller.js
1575
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-action-sync.controller.js
1576
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-action.controller.js
1577
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/bulk-actions-sync-plan.html
1578
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/bulk-actions-sync.html
1579
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/bulk-actions.html
1580
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/partials/sync-status.html
1581
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-details-info.controller.js
1582
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-details.controller.js
1583
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js
1584
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/views/product-details.html
1585
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/views/product-info.html
1586
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/views/product-repositories.html
1587
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/views/product-tasks.html
1588
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-form.controller.js
1589
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery.controller.js
1590
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-base.html
1591
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html
1592
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html
1593
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/new-product.controller.js
1594
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/product-form.controller.js
1595
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/views/product-new-form.html
1596
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/views/product-new.html
1597
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/product.factory.js
1598
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.controller.js
1599
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.module.js
1600
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/partials/product-table-sync-status.html
1601
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products-table-collapsed.html
1602
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products-table-full.html
1603
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products.html
1604
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-modules-details-content-views.controller.js
1605
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-modules-details-repositories.controller.js
1606
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-modules-details.controller.js
1607
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-modules-details-content-views.html
1608
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-modules-details-info.html
1609
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-modules-details-repositories.html
1610
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-modules-details.html
1611
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-module.factory.js
1612
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.controller.js
1613
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.module.js
1614
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.routes.js
1615
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules-table-collapsed.html
1616
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules-table-full.html
1617
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules.html
1618
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/details/repository-details-info.controller.js
1619
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/details/repository-details-manage-content.controller.js
1620
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/details/views/repository-info.html
1621
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/details/views/repository-manage-docker-images.html
1622
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/details/views/repository-manage-package-groups.html
1623
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/details/views/repository-manage-packages.html
1624
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/details/views/repository-manage-puppet-modules.html
1625
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/new/new-repository.controller.js
1626
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/new/views/repository-new.html
1627
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/repositories.module.js
1628
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/repositories/repository.factory.js
1629
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/subscription-associations-activation-keys.controller.js
1630
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/subscription-associations-content-hosts.controller.js
1631
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/subscription-details.controller.js
1632
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/subscription-product-details.controller.js
1633
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/subscription-products.controller.js
1634
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/views/subscription-associations-activation-keys.html
1635
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/views/subscription-associations-content-hosts.html
1636
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/views/subscription-details.html
1637
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/views/subscription-info.html
1638
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/views/subscription-products.html
1639
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/grouped.filter.js
1640
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/manifest-details.controller.js
1641
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/manifest-history.controller.js
1642
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/manifest-import.controller.js
1643
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/manifest.controller.js
1644
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/views/manifest-details.html
1645
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/views/manifest-import-history.html
1646
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/views/manifest-import.html
1647
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/views/manifest.html
1648
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/subscription-type.directive.js
1649
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/subscriptionAttachAmountFilter.filter.js
1650
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/subscriptionConsumed.filter.js
1651
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/subscriptions-helper.service.js
1652
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/subscriptions.controller.js
1653
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/subscriptions.factory.js
1654
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/subscriptions.module.js
1655
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/subscription-type.html
1656
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/subscriptions-delete-bulk.html
1657
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/subscriptions-table-collapsed.html
1658
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/subscriptions-table-full.html
1659
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/subscriptions.html
1660
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-add-products.controller.js
1661
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-details-info.controller.js
1662
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-details.controller.js
1663
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-products.controller.js
1664
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html
1665
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-info.html
1666
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-products-table.html
1667
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-products.html
1668
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/new-sync-plan.controller.js
1669
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
1670
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan.html
1671
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/sync-plan.factory.js
1672
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/sync-plans.controller.js
1673
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/sync-plans.module.js
1674
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/views/sync-plans-table-collapsed.html
1675
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/views/sync-plans-table-full.html
1676
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/views/sync-plans.html
1853
1677
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/aggregate-task.factory.js
1854
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/views/tasks.html
1855
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/views/task-details.html
1856
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/views/tasks-table.html
1857
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/views/task-details-standalone.html
1858
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/views/tasks-index.html
1859
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/views/user-tasks-table.html
1860
1678
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task-details.controller.js
1861
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/tasks-table.directive.js
1862
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task-input-short.filter.js
1863
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task-input-reduce.filter.js
1864
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task-input-part.directive.js
1865
1679
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task-input-compile.filter.js
1680
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task-input-part.directive.js
1681
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task-input-reduce.filter.js
1682
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task-input-short.filter.js
1683
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task.factory.js
1684
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/tasks-nutupane.factory.js
1685
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/tasks-table.directive.js
1866
1686
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/tasks.module.js
1867
- - engines/bastion_katello/app/assets/stylesheets/bastion_katello/gpg-keys.less
1868
- - engines/bastion_katello/app/assets/stylesheets/bastion_katello/tasks.less
1869
- - engines/bastion_katello/app/assets/stylesheets/bastion_katello/environments.less
1687
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/views/task-details-standalone.html
1688
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/views/task-details.html
1689
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/views/tasks-index.html
1690
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/views/tasks-table.html
1691
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/views/tasks.html
1692
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/views/user-tasks-table.html
1870
1693
  - engines/bastion_katello/app/assets/stylesheets/bastion_katello/bastion_katello.less
1694
+ - engines/bastion_katello/app/assets/stylesheets/bastion_katello/environments.less
1871
1695
  - engines/bastion_katello/app/assets/stylesheets/bastion_katello/errata.less
1696
+ - engines/bastion_katello/app/assets/stylesheets/bastion_katello/gpg-keys.less
1872
1697
  - engines/bastion_katello/app/assets/stylesheets/bastion_katello/systems.less
1698
+ - engines/bastion_katello/app/assets/stylesheets/bastion_katello/tasks.less
1699
+ - engines/bastion_katello/bastion_katello.gemspec
1700
+ - engines/bastion_katello/lib/bastion_katello.rb
1873
1701
  - engines/bastion_katello/lib/bastion_katello/engine.rb
1874
1702
  - engines/bastion_katello/lib/bastion_katello/version.rb
1875
- - engines/bastion_katello/lib/bastion_katello.rb
1876
- - engines/bastion_katello/README.md
1877
- - engines/bastion_katello/bastion_katello.gemspec
1703
+ - lib/README
1704
+ - lib/katello.rb
1705
+ - lib/katello/actions/actions.rb
1706
+ - lib/katello/apipie/validators.rb
1707
+ - lib/katello/engine.rb
1708
+ - lib/katello/permissions.rb
1709
+ - lib/katello/permissions/activation_key_permissions.rb
1710
+ - lib/katello/permissions/capsule_content_permissions.rb
1711
+ - lib/katello/permissions/content_host_permissions.rb
1712
+ - lib/katello/permissions/content_view_permissions.rb
1713
+ - lib/katello/permissions/gpg_key_permissions.rb
1714
+ - lib/katello/permissions/host_collections_permissions.rb
1715
+ - lib/katello/permissions/lifecycle_environment_permissions.rb
1716
+ - lib/katello/permissions/operatingsystems_permissions.rb
1717
+ - lib/katello/permissions/organization_permissions.rb
1718
+ - lib/katello/permissions/product_permissions.rb
1719
+ - lib/katello/permissions/subscription_permissions.rb
1720
+ - lib/katello/permissions/sync_plan_permissions.rb
1721
+ - lib/katello/permissions/user_permissions.rb
1722
+ - lib/katello/plugin.rb
1723
+ - lib/katello/tasks/asset_compile.rake
1724
+ - lib/katello/tasks/clean_backend_objects.rake
1725
+ - lib/katello/tasks/delete_orphaned_content.rake
1726
+ - lib/katello/tasks/gettext.rake
1727
+ - lib/katello/tasks/jenkins.rake
1728
+ - lib/katello/tasks/jshint.rake
1729
+ - lib/katello/tasks/jsroutes.rake
1730
+ - lib/katello/tasks/pretty_routes.rake
1731
+ - lib/katello/tasks/regenerate_repo_metadata.rake
1732
+ - lib/katello/tasks/reindex.rake
1733
+ - lib/katello/tasks/rubocop.rake
1734
+ - lib/katello/tasks/setup.rake
1735
+ - lib/katello/tasks/simplecov.rake
1736
+ - lib/katello/tasks/test.rake
1737
+ - lib/katello/tasks/upgrades/2.1/import_errata.rake
1738
+ - lib/katello/tasks/upgrades/2.2/update_gpg_key_urls.rake
1739
+ - lib/katello/tasks/upgrades/2.2/update_metadata_expire.rake
1740
+ - lib/katello/tasks/upgrades/2.4/import_distributions.rake
1741
+ - lib/katello/tasks/upgrades/2.4/import_package_groups.rake
1742
+ - lib/katello/tasks/upgrades/2.4/import_puppet_modules.rake
1743
+ - lib/katello/tasks/upgrades/2.4/import_rpms.rake
1744
+ - lib/katello/tasks/upgrades/2.4/import_subscriptions.rake
1745
+ - lib/katello/tasks/yard.rake
1746
+ - lib/katello/url_constrained_cookie_store.rb
1747
+ - lib/katello/version.rb
1748
+ - lib/monkeys/anemone.rb
1749
+ - lib/monkeys/foreign_keys_postgresql.rb
1750
+ - lib/monkeys/json_munging_patch.rb
1751
+ - lib/monkeys/multi_json_empty_fix.rb
1752
+ - lib/monkeys/passenger_tee_input.rb
1753
+ - locale/Makefile
1754
+ - locale/README
1755
+ - locale/action_names.rb
1756
+ - locale/bn/katello.po
1757
+ - locale/cs/katello.po
1758
+ - locale/de/katello.po
1759
+ - locale/en/katello.po
1760
+ - locale/es/katello.po
1761
+ - locale/fr/katello.po
1762
+ - locale/gu/katello.po
1763
+ - locale/hi/katello.po
1764
+ - locale/it/katello.po
1765
+ - locale/ja/katello.po
1766
+ - locale/katello.pot
1767
+ - locale/kn/katello.po
1768
+ - locale/ko/katello.po
1769
+ - locale/mr/katello.po
1770
+ - locale/or/katello.po
1771
+ - locale/pa/katello.po
1772
+ - locale/pt/katello.po
1773
+ - locale/pt_BR/katello.po
1774
+ - locale/ru/katello.po
1775
+ - locale/ta/katello.po
1776
+ - locale/te/katello.po
1777
+ - locale/zanata.xml
1778
+ - locale/zh_CN/katello.po
1779
+ - locale/zh_TW/katello.po
1780
+ - vendor/assets/images/katello/add2.png
1781
+ - vendor/assets/images/katello/addhost.png
1782
+ - vendor/assets/images/katello/addhost2.png
1783
+ - vendor/assets/images/katello/bg_header.jpg
1784
+ - vendor/assets/images/katello/bg_menu_big.jpg
1785
+ - vendor/assets/images/katello/bg_toolbarheader.jpg
1786
+ - vendor/assets/images/katello/close.png
1787
+ - vendor/assets/images/katello/delete.png
1788
+ - vendor/assets/images/katello/delete_white.gif
1789
+ - vendor/assets/images/katello/file.gif
1790
+ - vendor/assets/images/katello/folder-closed.gif
1791
+ - vendor/assets/images/katello/folder.gif
1792
+ - vendor/assets/images/katello/folderClosed.gif
1793
+ - vendor/assets/images/katello/icon_add_hardwarePool.png
1794
+ - vendor/assets/images/katello/icon_add_vmpool.png
1795
+ - vendor/assets/images/katello/icon_addhost.gif
1796
+ - vendor/assets/images/katello/icon_addstorage.gif
1797
+ - vendor/assets/images/katello/icon_addstorage.png
1798
+ - vendor/assets/images/katello/icon_dashboard.gif
1799
+ - vendor/assets/images/katello/icon_delete.gif
1800
+ - vendor/assets/images/katello/icon_hdwarepool.png
1801
+ - vendor/assets/images/katello/icon_help.png
1802
+ - vendor/assets/images/katello/icon_menu_arrow.gif
1803
+ - vendor/assets/images/katello/icon_newgroup.gif
1804
+ - vendor/assets/images/katello/icon_search.png
1805
+ - vendor/assets/images/katello/icon_toolbar_arrow.gif
1806
+ - vendor/assets/images/katello/icon_unassignedhost.gif
1807
+ - vendor/assets/images/katello/icon_vmpool.png
1808
+ - vendor/assets/images/katello/image_ovirt.png
1809
+ - vendor/assets/images/katello/minus.gif
1810
+ - vendor/assets/images/katello/move.png
1811
+ - vendor/assets/images/katello/plus.gif
1812
+ - vendor/assets/images/katello/ui-bg_flat_0_aaaaaa_40x100.png
1813
+ - vendor/assets/images/katello/ui-bg_flat_75_ffffff_40x100.png
1814
+ - vendor/assets/images/katello/ui-bg_highlight-hard_75_dadada_1x100.png
1815
+ - vendor/assets/images/katello/ui-bg_highlight-hard_75_e6e6e6_1x100.png
1816
+ - vendor/assets/images/katello/ui-bg_highlight-hard_95_ffffff_1x100.png
1817
+ - vendor/assets/images/katello/ui-bg_highlight-soft_80_e0e0e0_1x100.png
1818
+ - vendor/assets/images/katello/ui-bg_inset-hard_65_ffffff_1x100.png
1819
+ - vendor/assets/images/katello/ui-bg_inset-soft_95_fef1ec_1x100.png
1820
+ - vendor/assets/images/katello/ui-icons_8f8f8f_256x240.png
1821
+ - vendor/assets/images/katello/ui-icons_97baed_256x240.png
1822
+ - vendor/assets/images/katello/ui-icons_cd0a0a_256x240.png
1823
+ - vendor/assets/javascripts/katello/chosen.jquery.js
1824
+ - vendor/assets/javascripts/katello/jquery-1.7.2.js
1825
+ - vendor/assets/javascripts/katello/jquery.ba-bbq.js
1826
+ - vendor/assets/javascripts/katello/jquery.hoverIntent.js
1827
+ - vendor/assets/javascripts/katello/jquery.periodicalupdater.js
1828
+ - vendor/assets/javascripts/katello/jquery.treeTable.js
1829
+ - vendor/assets/javascripts/katello/jquery.trunk8.js
1830
+ - vendor/assets/stylesheets/katello/facebox.css
1831
+ - vendor/assets/stylesheets/katello/jquery-ui-1.8.11.custom.css
1832
+ - vendor/assets/stylesheets/katello/jquery.jnotify.css
1833
+ - vendor/assets/stylesheets/katello/jquery.jscrollpane.css
1834
+ - vendor/assets/stylesheets/katello/jquery.loadmask.css
1835
+ - vendor/assets/stylesheets/katello/jquery.multiselect.css
1836
+ - vendor/assets/stylesheets/katello/jquery.multiselect.filter.css
1837
+ - vendor/assets/stylesheets/katello/jquery.treeTable.css
1838
+ - vendor/assets/stylesheets/katello/ui.spinner.css
1878
1839
  homepage: http://www.katello.org
1879
1840
  licenses: []
1841
+ metadata: {}
1880
1842
  post_install_message:
1881
1843
  rdoc_options: []
1882
1844
  require_paths:
1883
1845
  - lib
1884
1846
  required_ruby_version: !ruby/object:Gem::Requirement
1885
- none: false
1886
1847
  requirements:
1887
- - - ! '>='
1848
+ - - ">="
1888
1849
  - !ruby/object:Gem::Version
1889
1850
  version: '0'
1890
1851
  required_rubygems_version: !ruby/object:Gem::Requirement
1891
- none: false
1892
1852
  requirements:
1893
- - - ! '>'
1853
+ - - ">="
1894
1854
  - !ruby/object:Gem::Version
1895
- version: 1.3.1
1855
+ version: '0'
1896
1856
  requirements: []
1897
1857
  rubyforge_project:
1898
- rubygems_version: 1.8.28
1858
+ rubygems_version: 2.2.3
1899
1859
  signing_key:
1900
- specification_version: 3
1860
+ specification_version: 4
1901
1861
  summary: ''
1902
1862
  test_files: []