Project

General

Profile

Download (3.21 KB) Statistics
| Branch: | Tag: | Revision:
# Be sure to restart your server when you modify this file.
Foreman::Application.configure do |app|
# Version of your assets, change this if you want to expire all your assets.
config.assets.version = '1.0'

# Precompile additional assets.
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
# Rails.application.config.assets.precompile += %w( search.js )

# config.assets.precompile += %w()
javascript = %w(compute_resource
compute_resources/libvirt/nic_info
compute_resources/ovirt/nic_info
compute_resources/vmware/nic_info
lookup_keys
editor
diff
host_edit
host_edit_interfaces
hosts
jquery.cookie
host_checkbox
nfs_visibility
noVNC/base64
noVNC/des
noVNC/display
noVNC/input
noVNC/jsunzip
noVNC/logo
noVNC/playback
noVNC/rfb
noVNC/ui
noVNC/util
noVNC/websock
noVNC/webutil
noVNC
reports
spice
trends
charts
taxonomy_edit
gettext/all
filters
users
class_edit
dashboard
auth_source_ldap
subnets
hidden_values
password_strength
proxy_status
parameter_override)

stylesheets = %w( )

# Add the fonts path
config.assets.paths << Rails.root.join('vendor', 'assets', 'fonts')

# Precompile additional assets
config.assets.precompile << /\.(?:svg|eot|woff|gif|ttf)$/
config.assets.precompile += javascript.map { |js| js + '.js' } + stylesheets + %w(background-size.htc)

# Adds plugin assets to the application digests hash if a manifest file exists for a plugin
config.after_initialize do
if (manifest_file = Dir.glob("#{Rails.root}/public/assets/.sprockets-manifest*.json").first)
foreman_manifest = JSON.parse(File.read(manifest_file))

::Rails::Engine.subclasses.map(&:instance).each do |engine|
[engine.root, app.root].each do |root_dir|
manifest_path = File.join(root_dir, "public/assets/#{engine.engine_name}/#{engine.engine_name}.json")

if File.file?(manifest_path)
assets = JSON.parse(File.read(manifest_path))

foreman_manifest['files'] = foreman_manifest['files'].merge(assets['files'])
foreman_manifest['assets'] = foreman_manifest['assets'].merge(assets['assets'])
end
end
end

manifest_filename = 'asset_manifest.json'
tmp_path = "#{Rails.root}/tmp"

Tempfile.open(manifest_filename, tmp_path) do |file|
file.write(foreman_manifest.to_json)
app.assets_manifest = Sprockets::Manifest.new(app.assets, file.path)
ActionView::Base.assets_manifest = app.assets_manifest
end
end
end
end
(6-6/25)