blob: b3ae11e1ebe3e37ea44d29234726ac270da2d387 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# This is a global array of route extensions. Alaveteli modules may add to it.
# It is used by our config/routes.rb to decide which route extension files to load.
$alaveteli_route_extensions = []
def require_theme(theme_name)
theme_main_include = File.expand_path "../../../vendor/plugins/#{theme_name}/lib/alavetelitheme.rb", __FILE__
if File.exists? theme_main_include
require theme_main_include
end
end
if Rails.env == "test"
# By setting this ALAVETELI_TEST_THEME to a theme name, theme tests can run in the Rails
# context with the theme loaded. Otherwise the themes from the config aren't loaded in testing
# so they don't interfere with core Alaveteli tests
if defined? ALAVETELI_TEST_THEME
require_theme(ALAVETELI_TEST_THEME)
end
else
for url in AlaveteliConfiguration::theme_urls.reverse
require_theme theme_url_to_theme_name(url)
end
end
|