foreman_theme_satellite 13.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +619 -0
  3. data/README.md +482 -0
  4. data/Rakefile +47 -0
  5. data/app/assets/images/foreman_theme_satellite/favicon.ico +0 -0
  6. data/app/assets/images/foreman_theme_satellite/header_logo.svg +836 -0
  7. data/app/assets/images/foreman_theme_satellite/login_bg.svg +384 -0
  8. data/app/assets/images/foreman_theme_satellite/login_logo.svg +840 -0
  9. data/app/assets/javascripts/foreman_theme_satellite/locale/en/foreman_theme_satellite.js +124 -0
  10. data/app/assets/javascripts/foreman_theme_satellite/theme_dashboard.js +17 -0
  11. data/app/assets/javascripts/foreman_theme_satellite/theme_ng_page_title.js +15 -0
  12. data/app/assets/stylesheets/foreman_theme_satellite/application_colors.css +12 -0
  13. data/app/assets/stylesheets/foreman_theme_satellite/bastion.scss +5 -0
  14. data/app/assets/stylesheets/foreman_theme_satellite/external_logout.scss +13 -0
  15. data/app/assets/stylesheets/foreman_theme_satellite/foreman_theme_satellite.css +1 -0
  16. data/app/assets/stylesheets/foreman_theme_satellite/login.scss +32 -0
  17. data/app/assets/stylesheets/foreman_theme_satellite/patternfly_and_overrides.scss +7 -0
  18. data/app/assets/stylesheets/foreman_theme_satellite/provisioning_templates.scss +3 -0
  19. data/app/assets/stylesheets/foreman_theme_satellite/theme.scss +14 -0
  20. data/app/assets/stylesheets/foreman_theme_satellite/topbar.scss +11 -0
  21. data/app/assets/stylesheets/foreman_theme_satellite/wizard.scss +14 -0
  22. data/app/controllers/concerns/documentation_controller_branding.rb +33 -0
  23. data/app/controllers/concerns/provisioning_templates_controller_branding.rb +94 -0
  24. data/app/helpers/provisioning_templates_helper_branding.rb +12 -0
  25. data/app/helpers/rhev_helper.rb +10 -0
  26. data/app/helpers/theme_application_helper.rb +17 -0
  27. data/app/helpers/theme_css_class_helper.rb +8 -0
  28. data/app/helpers/theme_discovery_helper.rb +10 -0
  29. data/app/helpers/theme_external_logout_helper.rb +10 -0
  30. data/app/helpers/theme_layout_helper.rb +18 -0
  31. data/app/helpers/theme_login_helper.rb +10 -0
  32. data/app/models/concerns/branch_info_branding.rb +9 -0
  33. data/app/models/concerns/deprecation_notification.rb +23 -0
  34. data/app/models/concerns/distributor_version.rb +7 -0
  35. data/app/models/concerns/gce.rb +7 -0
  36. data/app/models/concerns/openstack.rb +8 -0
  37. data/app/models/concerns/ovirt.rb +8 -0
  38. data/app/models/concerns/provisioning.rb +21 -0
  39. data/app/models/concerns/realm_theme.rb +18 -0
  40. data/app/models/concerns/satellite_packages.rb +8 -0
  41. data/app/models/concerns/setting_branding.rb +17 -0
  42. data/app/models/concerns/upstream_only_settings.rb +6 -0
  43. data/app/overrides/bootdisk_help_page.rb +44 -0
  44. data/app/overrides/layouts/base/theme_react_root.html.erb.deface +7 -0
  45. data/app/overrides/layouts/base/theme_resources.html.erb.deface +7 -0
  46. data/app/overrides/layouts/base/theme_style_resources.html.erb.deface +3 -0
  47. data/app/overrides/rhev.rb +14 -0
  48. data/app/overrides/satellite_name_override.rb +83 -0
  49. data/app/services/concerns/setting_registry_branding.rb +20 -0
  50. data/app/services/foreman_theme_satellite/renderer_methods.rb +22 -0
  51. data/app/views/api/v2/home/status_extensions.json.rabl +1 -0
  52. data/app/views/foreman_theme_satellite/_theme_client_side_branding.js.erb +63 -0
  53. data/app/views/foreman_theme_satellite/rhev/_form.erb +8 -0
  54. data/app/views/foreman_theme_satellite/rhev/_show.html.erb +6 -0
  55. data/db/migrate/20160404130619_remove_satellite_from_notification_name.rb +8 -0
  56. data/db/migrate/20161220092005_remove_satellite_from_notification_name_spell_correction.rb +24 -0
  57. data/db/migrate/20180516103339_update_idm_params.rb +19 -0
  58. data/db/migrate/20180605150932_deprecate_satellite_templates.rb +52 -0
  59. data/db/migrate/20181108171732_change_blog_url.rb +13 -0
  60. data/db/migrate/20201118090534_insights_param.rb +9 -0
  61. data/db/seeds.d/069-provisioning_templates_defaults.rb +24 -0
  62. data/db/seeds.d/850-global_parameters.rb +15 -0
  63. data/lib/foreman_theme_satellite/branded_words.rb +58 -0
  64. data/lib/foreman_theme_satellite/deprecated_templates.rb +9 -0
  65. data/lib/foreman_theme_satellite/documentation.rb +76 -0
  66. data/lib/foreman_theme_satellite/engine.rb +155 -0
  67. data/lib/foreman_theme_satellite/pry_rack.rb +12 -0
  68. data/lib/foreman_theme_satellite/replacer_repository.rb +57 -0
  69. data/lib/foreman_theme_satellite/rss_checker_branding.rb +11 -0
  70. data/lib/foreman_theme_satellite/version.rb +3 -0
  71. data/lib/foreman_theme_satellite.rb +4 -0
  72. data/lib/generators/foreman_theme_satellite/color_diff_generator.rb +32 -0
  73. data/lib/generators/foreman_theme_satellite/lib/color_changer.rb +25 -0
  74. data/lib/generators/foreman_theme_satellite/lib/css_compare.rb +85 -0
  75. data/lib/tasks/foreman_theme_satellite_tasks.rake +48 -0
  76. data/locale/Makefile +65 -0
  77. data/locale/en/foreman_theme_satellite.edit.po +152 -0
  78. data/locale/en/foreman_theme_satellite.po +286 -0
  79. data/locale/en/foreman_theme_satellite.po.time_stamp +0 -0
  80. data/locale/foreman_theme_satellite.pot +387 -0
  81. data/locale/gemspec.rb +2 -0
  82. data/package.json +31 -0
  83. data/webpack/index.js +5 -0
  84. metadata +226 -0
@@ -0,0 +1,286 @@
1
+ # foreman_theme_satellite
2
+ #
3
+ # This file is distributed under the same license as foreman_theme_satellite.
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: version 0.0.1\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "PO-Revision-Date: 2014-08-20 08:54+0100\n"
10
+ "Last-Translator: Foreman Team <foreman-dev@googlegroups.com>\n"
11
+ "Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
12
+ "Language: \n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+
18
+ msgid "(build: %{version})"
19
+ msgstr ""
20
+
21
+ msgid "API Guide"
22
+ msgstr ""
23
+
24
+ msgid "Abstract async task"
25
+ msgstr ""
26
+
27
+ msgid "Action with sub plans"
28
+ msgstr ""
29
+
30
+ msgid "Add Sync Plan Products"
31
+ msgstr ""
32
+
33
+ msgid "Attach subscriptions"
34
+ msgstr ""
35
+
36
+ msgid "Auto attach subscriptions"
37
+ msgstr ""
38
+
39
+ msgid "Auto-attach subscriptions"
40
+ msgstr ""
41
+
42
+ msgid "Blog"
43
+ msgstr ""
44
+
45
+ msgid "Configure capsule"
46
+ msgstr ""
47
+
48
+ msgid "Create"
49
+ msgstr ""
50
+
51
+ msgid "Create Package Group"
52
+ msgstr ""
53
+
54
+ msgid "Create repos"
55
+ msgstr ""
56
+
57
+ msgid "Customer portal"
58
+ msgstr ""
59
+
60
+ msgid "Delete"
61
+ msgstr ""
62
+
63
+ msgid "Delete Activation Key"
64
+ msgstr ""
65
+
66
+ msgid "Delete Lifecycle Environment"
67
+ msgstr ""
68
+
69
+ msgid "Delete Package Group"
70
+ msgstr ""
71
+
72
+ msgid "Delete Product"
73
+ msgstr ""
74
+
75
+ msgid "Destroy"
76
+ msgstr ""
77
+
78
+ msgid "Destroy Content Host"
79
+ msgstr ""
80
+
81
+ msgid "Disable"
82
+ msgstr ""
83
+
84
+ msgid "Documentation"
85
+ msgstr ""
86
+
87
+ msgid "Enable"
88
+ msgstr ""
89
+
90
+ msgid "Environment only"
91
+ msgstr ""
92
+
93
+ msgid "Errata mail"
94
+ msgstr ""
95
+
96
+ msgid "Export"
97
+ msgstr ""
98
+
99
+ msgid "Filtered index content"
100
+ msgstr ""
101
+
102
+ msgid "Full trace"
103
+ msgstr ""
104
+
105
+ msgid "Host group and Environment"
106
+ msgstr ""
107
+
108
+ msgid "Host group only"
109
+ msgstr ""
110
+
111
+ msgid "Hypervisors"
112
+ msgstr ""
113
+
114
+ msgid "Hypervisors update"
115
+ msgstr ""
116
+
117
+ msgid "IRC"
118
+ msgstr ""
119
+
120
+ msgid "If you feel this is an error with Satellite 6 itself, please open a new issue with"
121
+ msgstr ""
122
+
123
+ msgid "Import Puppet classes"
124
+ msgstr ""
125
+
126
+ msgid "Import facts"
127
+ msgstr ""
128
+
129
+ msgid "Includes %{system} © 2009-%{year} Paul Kelly and Ohad Levy"
130
+ msgstr ""
131
+
132
+ msgid "Incremental Update"
133
+ msgstr ""
134
+
135
+ msgid "Incremental Update of Content View Version(s) "
136
+ msgstr ""
137
+
138
+ msgid "Index content"
139
+ msgstr ""
140
+
141
+ msgid "Index errata"
142
+ msgstr ""
143
+
144
+ msgid "Index package groups"
145
+ msgstr ""
146
+
147
+ msgid "Install Applicable Errata"
148
+ msgstr ""
149
+
150
+ msgid "Install erratum"
151
+ msgstr ""
152
+
153
+ msgid "Install package"
154
+ msgstr ""
155
+
156
+ msgid "Install package group"
157
+ msgstr ""
158
+
159
+ msgid "Operating System"
160
+ msgstr ""
161
+
162
+ msgid "Operating system default"
163
+ msgstr ""
164
+
165
+ msgid "Package Profile Update"
166
+ msgstr ""
167
+
168
+ msgid "Product Create"
169
+ msgstr ""
170
+
171
+ msgid "Promote"
172
+ msgstr ""
173
+
174
+ msgid "Promotion to Environment"
175
+ msgstr ""
176
+
177
+ msgid "Publish"
178
+ msgstr ""
179
+
180
+ msgid "Red Hat Satellite Blog"
181
+ msgstr ""
182
+
183
+ msgid "Register Host"
184
+ msgstr ""
185
+
186
+ msgid "Reindex subscriptions"
187
+ msgstr ""
188
+
189
+ msgid "Remove Content"
190
+ msgstr ""
191
+
192
+ msgid "Remove Version"
193
+ msgstr ""
194
+
195
+ msgid "Remove Versions and Associations"
196
+ msgstr ""
197
+
198
+ msgid "Remove from Environment"
199
+ msgstr ""
200
+
201
+ msgid "Remove package"
202
+ msgstr ""
203
+
204
+ msgid "Remove package group"
205
+ msgstr ""
206
+
207
+ msgid "Remove subscriptions"
208
+ msgstr ""
209
+
210
+ msgid "Republish Version Repositories"
211
+ msgstr ""
212
+
213
+ msgid "Satellite ticketing system"
214
+ msgstr ""
215
+
216
+ msgid "Server Administration Guide"
217
+ msgstr ""
218
+
219
+ msgid "Support"
220
+ msgstr ""
221
+
222
+ msgid "Synchronize"
223
+ msgstr ""
224
+
225
+ msgid "Synchronize capsule"
226
+ msgstr ""
227
+
228
+ msgid "The final entry, Operating System default, can be set by editing the %s page."
229
+ msgstr ""
230
+
231
+ msgid "Theme changes for Satellite 6."
232
+ msgstr ""
233
+
234
+ msgid "Transition Guide"
235
+ msgstr ""
236
+
237
+ msgid "Unregister Host"
238
+ msgstr ""
239
+
240
+ msgid "Update"
241
+ msgstr ""
242
+
243
+ msgid "Update Content Overrides"
244
+ msgstr ""
245
+
246
+ msgid "Update Sync Plan"
247
+ msgstr ""
248
+
249
+ msgid "Update Sync Plan Products"
250
+ msgstr ""
251
+
252
+ msgid "Update for host"
253
+ msgstr ""
254
+
255
+ msgid "Update package"
256
+ msgstr ""
257
+
258
+ msgid "Update release version for host"
259
+ msgstr ""
260
+
261
+ msgid "Upload errata into"
262
+ msgstr ""
263
+
264
+ msgid "Upload into"
265
+ msgstr ""
266
+
267
+ msgid "Version %{version}"
268
+ msgstr ""
269
+
270
+ msgid "Version %{version} © %{year} Red Hat Inc."
271
+ msgstr ""
272
+
273
+ msgid "When a Host requests a template (e.g. during provisioning), Foreman selects the optimal match from the available templates of that type, in the following order:"
274
+ msgstr ""
275
+
276
+ msgid "When editing a Template, you must assign a list of Operating Systems with which this Template can be used. Optionally, you can restrict a template to a list of Hostgroups or Environments."
277
+ msgstr ""
278
+
279
+ msgid "You can find us on %{freenode} (irc.freenode.net) on #satellite6."
280
+ msgstr ""
281
+
282
+ msgid "You would probably need to attach the"
283
+ msgstr ""
284
+
285
+ msgid "and relevant log entries."
286
+ msgstr ""
File without changes
@@ -0,0 +1,387 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_theme_satellite package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: foreman_theme_satellite 1.0.0\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2018-03-12 14:48-0400\n"
12
+ "PO-Revision-Date: 2018-03-12 14:48-0400\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "Language: \n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
+
21
+ #: ../app/helpers/theme_application_helper.rb:39
22
+ msgid ""
23
+ "When editing a Template, you must assign a list of Operating Systems with whic"
24
+ "h this Template can be used. Optionally, you can restrict a template to a list"
25
+ " of Hostgroups or Environments."
26
+ msgstr ""
27
+
28
+ #: ../app/helpers/theme_application_helper.rb:40
29
+ msgid ""
30
+ "When a Host requests a template (e.g. during provisioning), Foreman selects th"
31
+ "e optimal match from the available templates of that type, in the following or"
32
+ "der:"
33
+ msgstr ""
34
+
35
+ #: ../app/helpers/theme_application_helper.rb:42
36
+ msgid "Host group and Environment"
37
+ msgstr ""
38
+
39
+ #: ../app/helpers/theme_application_helper.rb:43
40
+ msgid "Host group only"
41
+ msgstr ""
42
+
43
+ #: ../app/helpers/theme_application_helper.rb:44
44
+ msgid "Environment only"
45
+ msgstr ""
46
+
47
+ #: ../app/helpers/theme_application_helper.rb:45
48
+ msgid "Operating system default"
49
+ msgstr ""
50
+
51
+ #: ../app/helpers/theme_application_helper.rb:47
52
+ msgid "The final entry, Operating System default, can be set by editing the %s page."
53
+ msgstr ""
54
+
55
+ #: ../app/helpers/theme_application_helper.rb:47
56
+ msgid "Operating System"
57
+ msgstr ""
58
+
59
+ #: ../app/overrides/satellite_name_override.rb:2
60
+ msgid "Version %{version}"
61
+ msgstr ""
62
+
63
+ #: ../app/overrides/satellite_name_override.rb:3
64
+ msgid "Support"
65
+ msgstr ""
66
+
67
+ #: ../app/overrides/satellite_name_override.rb:4
68
+ msgid "Customer portal"
69
+ msgstr ""
70
+
71
+ #: ../app/overrides/satellite_name_override.rb:5
72
+ msgid "Documentation"
73
+ msgstr ""
74
+
75
+ #: ../app/overrides/satellite_name_override.rb:6
76
+ msgid "Server Administration Guide"
77
+ msgstr ""
78
+
79
+ #: ../app/overrides/satellite_name_override.rb:7
80
+ msgid "Transition Guide"
81
+ msgstr ""
82
+
83
+ #: ../app/overrides/satellite_name_override.rb:8
84
+ msgid "API Guide"
85
+ msgstr ""
86
+
87
+ #: ../app/overrides/satellite_name_override.rb:9
88
+ msgid "Blog"
89
+ msgstr ""
90
+
91
+ #: ../app/overrides/satellite_name_override.rb:10
92
+ msgid "Red Hat Satellite Blog"
93
+ msgstr ""
94
+
95
+ #: ../app/overrides/satellite_name_override.rb:11
96
+ msgid "IRC"
97
+ msgstr ""
98
+
99
+ #: ../app/overrides/satellite_name_override.rb:12
100
+ msgid "You can find us on %{freenode} (irc.freenode.net) on #satellite6."
101
+ msgstr ""
102
+
103
+ #: ../app/overrides/satellite_name_override.rb:13
104
+ msgid "Version %{version} © %{year} Red Hat Inc."
105
+ msgstr ""
106
+
107
+ #: ../app/overrides/satellite_name_override.rb:14
108
+ msgid "Includes %{system} © 2009-%{year} Paul Kelly and Ohad Levy"
109
+ msgstr ""
110
+
111
+ #: ../app/overrides/satellite_name_override.rb:15
112
+ msgid ""
113
+ "If you feel this is an error with Satellite 6 itself, please open a new issue "
114
+ "with"
115
+ msgstr ""
116
+
117
+ #: ../app/overrides/satellite_name_override.rb:16
118
+ msgid "Satellite ticketing system"
119
+ msgstr ""
120
+
121
+ #: ../app/overrides/satellite_name_override.rb:17
122
+ msgid "You would probably need to attach the"
123
+ msgstr ""
124
+
125
+ #: ../app/overrides/satellite_name_override.rb:18
126
+ msgid "Full trace"
127
+ msgstr ""
128
+
129
+ #: ../app/overrides/satellite_name_override.rb:19
130
+ msgid "and relevant log entries."
131
+ msgstr ""
132
+
133
+ #: ../app/overrides/satellite_name_override.rb:20
134
+ msgid "(build: %{version})"
135
+ msgstr ""
136
+
137
+ #: action_names.rb:2
138
+ msgid "Action with sub plans"
139
+ msgstr ""
140
+
141
+ #: action_names.rb:3
142
+ msgid "Import facts"
143
+ msgstr ""
144
+
145
+ #: action_names.rb:4
146
+ msgid "Import Puppet classes"
147
+ msgstr ""
148
+
149
+ #: action_names.rb:5
150
+ msgid "Abstract async task"
151
+ msgstr ""
152
+
153
+ #: action_names.rb:6
154
+ msgid "Delete"
155
+ msgstr ""
156
+
157
+ #: action_names.rb:7
158
+ msgid "Errata mail"
159
+ msgstr ""
160
+
161
+ #: action_names.rb:8
162
+ msgid "Incremental Update of Content View Version(s) "
163
+ msgstr ""
164
+
165
+ #: action_names.rb:9
166
+ msgid "Promote"
167
+ msgstr ""
168
+
169
+ #: action_names.rb:10
170
+ msgid "Configure capsule"
171
+ msgstr ""
172
+
173
+ #: action_names.rb:11
174
+ msgid "Promotion to Environment"
175
+ msgstr ""
176
+
177
+ #: action_names.rb:12
178
+ msgid "Publish"
179
+ msgstr ""
180
+
181
+ #: action_names.rb:13
182
+ msgid "Remove Versions and Associations"
183
+ msgstr ""
184
+
185
+ #: action_names.rb:14
186
+ msgid "Remove from Environment"
187
+ msgstr ""
188
+
189
+ #: action_names.rb:15
190
+ msgid "Remove Version"
191
+ msgstr ""
192
+
193
+ #: action_names.rb:16
194
+ msgid "Update"
195
+ msgstr ""
196
+
197
+ #: action_names.rb:17
198
+ msgid "Create"
199
+ msgstr ""
200
+
201
+ #: action_names.rb:18
202
+ msgid "Delete Activation Key"
203
+ msgstr ""
204
+
205
+ #: action_names.rb:19
206
+ msgid "Create repos"
207
+ msgstr ""
208
+
209
+ #: action_names.rb:20
210
+ msgid "Export"
211
+ msgstr ""
212
+
213
+ #: action_names.rb:21
214
+ msgid "Incremental Update"
215
+ msgstr ""
216
+
217
+ #: action_names.rb:22
218
+ msgid "Republish Version Repositories"
219
+ msgstr ""
220
+
221
+ #: action_names.rb:23
222
+ msgid "Delete Lifecycle Environment"
223
+ msgstr ""
224
+
225
+ #: action_names.rb:24
226
+ msgid "Update Sync Plan"
227
+ msgstr ""
228
+
229
+ #: action_names.rb:25
230
+ msgid "Update Sync Plan Products"
231
+ msgstr ""
232
+
233
+ #: action_names.rb:26
234
+ msgid "Add Sync Plan Products"
235
+ msgstr ""
236
+
237
+ #: action_names.rb:27
238
+ msgid "Enable"
239
+ msgstr ""
240
+
241
+ #: action_names.rb:28
242
+ msgid "Attach subscriptions"
243
+ msgstr ""
244
+
245
+ #: action_names.rb:29
246
+ msgid "Synchronize capsule"
247
+ msgstr ""
248
+
249
+ #: action_names.rb:30
250
+ msgid "Disable"
251
+ msgstr ""
252
+
253
+ #: action_names.rb:31
254
+ msgid "Destroy Content Host"
255
+ msgstr ""
256
+
257
+ #: action_names.rb:32
258
+ msgid "Create Package Group"
259
+ msgstr ""
260
+
261
+ #: action_names.rb:33
262
+ msgid "Upload into"
263
+ msgstr ""
264
+
265
+ #: action_names.rb:34
266
+ msgid "Install Applicable Errata"
267
+ msgstr ""
268
+
269
+ #: action_names.rb:35
270
+ msgid "Auto attach subscriptions"
271
+ msgstr ""
272
+
273
+ #: action_names.rb:36
274
+ msgid "Install erratum"
275
+ msgstr ""
276
+
277
+ #: action_names.rb:37
278
+ msgid "Upload errata into"
279
+ msgstr ""
280
+
281
+ #: action_names.rb:38
282
+ msgid "Hypervisors"
283
+ msgstr ""
284
+
285
+ #: action_names.rb:39
286
+ msgid "Remove package"
287
+ msgstr ""
288
+
289
+ #: action_names.rb:40
290
+ msgid "Filtered index content"
291
+ msgstr ""
292
+
293
+ #: action_names.rb:41
294
+ msgid "Package Profile Update"
295
+ msgstr ""
296
+
297
+ #: action_names.rb:42
298
+ msgid "Update package"
299
+ msgstr ""
300
+
301
+ #: action_names.rb:43
302
+ msgid "Index package groups"
303
+ msgstr ""
304
+
305
+ #: action_names.rb:44
306
+ msgid "Index errata"
307
+ msgstr ""
308
+
309
+ #: action_names.rb:45
310
+ msgid "Install package group"
311
+ msgstr ""
312
+
313
+ #: action_names.rb:46
314
+ msgid "Index content"
315
+ msgstr ""
316
+
317
+ #: action_names.rb:47
318
+ msgid "Register Host"
319
+ msgstr ""
320
+
321
+ #: action_names.rb:48
322
+ msgid "Auto-attach subscriptions"
323
+ msgstr ""
324
+
325
+ #: action_names.rb:49
326
+ msgid "Remove package group"
327
+ msgstr ""
328
+
329
+ #: action_names.rb:50
330
+ msgid "Remove subscriptions"
331
+ msgstr ""
332
+
333
+ #: action_names.rb:51
334
+ msgid "Unregister Host"
335
+ msgstr ""
336
+
337
+ #: action_names.rb:52
338
+ msgid "Update for host"
339
+ msgstr ""
340
+
341
+ #: action_names.rb:53
342
+ msgid "Update Content Overrides"
343
+ msgstr ""
344
+
345
+ #: action_names.rb:54
346
+ msgid "Delete Package Group"
347
+ msgstr ""
348
+
349
+ #: action_names.rb:55
350
+ msgid "Hypervisors update"
351
+ msgstr ""
352
+
353
+ #: action_names.rb:56
354
+ msgid "Synchronize"
355
+ msgstr ""
356
+
357
+ #: action_names.rb:57
358
+ msgid "Update release version for host"
359
+ msgstr ""
360
+
361
+ #: action_names.rb:58
362
+ msgid "Install package"
363
+ msgstr ""
364
+
365
+ #: action_names.rb:59
366
+ msgid "Remove Content"
367
+ msgstr ""
368
+
369
+ #: action_names.rb:60
370
+ msgid "Destroy"
371
+ msgstr ""
372
+
373
+ #: action_names.rb:61
374
+ msgid "Product Create"
375
+ msgstr ""
376
+
377
+ #: action_names.rb:62
378
+ msgid "Delete Product"
379
+ msgstr ""
380
+
381
+ #: action_names.rb:63
382
+ msgid "Reindex subscriptions"
383
+ msgstr ""
384
+
385
+ #: gemspec.rb:2
386
+ msgid "Theme changes for Satellite 6."
387
+ msgstr ""
data/locale/gemspec.rb ADDED
@@ -0,0 +1,2 @@
1
+ # Matches foreman_theme_satellite.gemspec
2
+ N_("Theme changes for Satellite 6.")
data/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "foreman_theme_satellite",
3
+ "version": "13.1.0",
4
+ "description": "Satellite theme =============",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "lint": "tfm-lint --plugin -d /webpack"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/RedHatSatellite/foreman_theme_satellite.git"
12
+ },
13
+ "bugs": {
14
+ "url": "http://bugzilla.redhat.com/"
15
+ },
16
+ "peerDependencies": {
17
+ "@theforeman/vendor": "^4.12.0"
18
+ },
19
+ "devDependencies": {
20
+ "@babel/core": "^7.7.0",
21
+ "@theforeman/builder": "^4.12.0",
22
+ "@theforeman/eslint-plugin-foreman": "^4.12.0",
23
+ "@theforeman/test": "^4.12.0",
24
+ "@theforeman/vendor-dev": "^4.12.0",
25
+ "babel-eslint": "^10.0.3",
26
+ "eslint": "^6.7.2",
27
+ "prettier": "^2.0.5",
28
+ "stylelint": "^9.3.0",
29
+ "stylelint-config-standard": "^18.0.0"
30
+ }
31
+ }
data/webpack/index.js ADDED
@@ -0,0 +1,5 @@
1
+ import componentRegistry from 'foremanReact/components/componentRegistry';
2
+ import { Helmet } from 'react-helmet';
3
+
4
+ // register components for erb mounting
5
+ componentRegistry.register({ name: 'Helmet', type: Helmet });