To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / lib / redmine / themes.rb @ 1568:bc47b68a9487

History | View | Annotate | Download (3.51 KB)

1 909:cbb26bc654de Chris
# Redmine - project management software
2 1494:e248c7af89ec Chris
# Copyright (C) 2006-2014  Jean-Philippe Lang
3 0:513646585e45 Chris
#
4
# This program is free software; you can redistribute it and/or
5
# modify it under the terms of the GNU General Public License
6
# as published by the Free Software Foundation; either version 2
7
# of the License, or (at your option) any later version.
8 909:cbb26bc654de Chris
#
9 0:513646585e45 Chris
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU General Public License for more details.
13 909:cbb26bc654de Chris
#
14 0:513646585e45 Chris
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17
18
module Redmine
19
  module Themes
20 909:cbb26bc654de Chris
21 0:513646585e45 Chris
    # Return an array of installed themes
22
    def self.themes
23
      @@installed_themes ||= scan_themes
24
    end
25 909:cbb26bc654de Chris
26 0:513646585e45 Chris
    # Rescan themes directory
27
    def self.rescan
28
      @@installed_themes = scan_themes
29
    end
30 909:cbb26bc654de Chris
31 0:513646585e45 Chris
    # Return theme for given id, or nil if it's not found
32 119:8661b858af72 Chris
    def self.theme(id, options={})
33
      return nil if id.blank?
34 909:cbb26bc654de Chris
35 119:8661b858af72 Chris
      found = themes.find {|t| t.id == id}
36
      if found.nil? && options[:rescan] != false
37
        rescan
38
        found = theme(id, :rescan => false)
39
      end
40
      found
41 0:513646585e45 Chris
    end
42 909:cbb26bc654de Chris
43 0:513646585e45 Chris
    # Class used to represent a theme
44
    class Theme
45 119:8661b858af72 Chris
      attr_reader :path, :name, :dir
46 909:cbb26bc654de Chris
47 0:513646585e45 Chris
      def initialize(path)
48 119:8661b858af72 Chris
        @path = path
49 0:513646585e45 Chris
        @dir = File.basename(path)
50
        @name = @dir.humanize
51 119:8661b858af72 Chris
        @stylesheets = nil
52
        @javascripts = nil
53 0:513646585e45 Chris
      end
54 909:cbb26bc654de Chris
55 0:513646585e45 Chris
      # Directory name used as the theme id
56
      def id; dir end
57 909:cbb26bc654de Chris
58 119:8661b858af72 Chris
      def ==(theme)
59
        theme.is_a?(Theme) && theme.dir == dir
60
      end
61 909:cbb26bc654de Chris
62 0:513646585e45 Chris
      def <=>(theme)
63
        name <=> theme.name
64
      end
65 909:cbb26bc654de Chris
66 119:8661b858af72 Chris
      def stylesheets
67
        @stylesheets ||= assets("stylesheets", "css")
68
      end
69 909:cbb26bc654de Chris
70 1115:433d4f72a19b Chris
      def images
71
        @images ||= assets("images")
72
      end
73
74 119:8661b858af72 Chris
      def javascripts
75
        @javascripts ||= assets("javascripts", "js")
76
      end
77 909:cbb26bc654de Chris
78 1517:dffacf8a6908 Chris
      def favicons
79
        @favicons ||= assets("favicon")
80
      end
81
82
      def favicon
83
        favicons.first
84
      end
85
86
      def favicon?
87
        favicon.present?
88
      end
89
90 119:8661b858af72 Chris
      def stylesheet_path(source)
91
        "/themes/#{dir}/stylesheets/#{source}"
92
      end
93 909:cbb26bc654de Chris
94 1115:433d4f72a19b Chris
      def image_path(source)
95
        "/themes/#{dir}/images/#{source}"
96
      end
97
98 119:8661b858af72 Chris
      def javascript_path(source)
99
        "/themes/#{dir}/javascripts/#{source}"
100
      end
101 909:cbb26bc654de Chris
102 1517:dffacf8a6908 Chris
      def favicon_path
103
        "/themes/#{dir}/favicon/#{favicon}"
104
      end
105
106 119:8661b858af72 Chris
      private
107 909:cbb26bc654de Chris
108 1115:433d4f72a19b Chris
      def assets(dir, ext=nil)
109
        if ext
110
          Dir.glob("#{path}/#{dir}/*.#{ext}").collect {|f| File.basename(f).gsub(/\.#{ext}$/, '')}
111
        else
112
          Dir.glob("#{path}/#{dir}/*").collect {|f| File.basename(f)}
113
        end
114 119:8661b858af72 Chris
      end
115 0:513646585e45 Chris
    end
116 909:cbb26bc654de Chris
117 0:513646585e45 Chris
    private
118 909:cbb26bc654de Chris
119 0:513646585e45 Chris
    def self.scan_themes
120
      dirs = Dir.glob("#{Rails.public_path}/themes/*").select do |f|
121
        # A theme should at least override application.css
122
        File.directory?(f) && File.exist?("#{f}/stylesheets/application.css")
123
      end
124
      dirs.collect {|dir| Theme.new(dir)}.sort
125
    end
126
  end
127
end
128
129
module ApplicationHelper
130 119:8661b858af72 Chris
  def current_theme
131
    unless instance_variable_defined?(:@current_theme)
132
      @current_theme = Redmine::Themes.theme(Setting.ui_theme)
133
    end
134
    @current_theme
135
  end
136 909:cbb26bc654de Chris
137 119:8661b858af72 Chris
  # Returns the header tags for the current theme
138
  def heads_for_theme
139
    if current_theme && current_theme.javascripts.include?('theme')
140
      javascript_include_tag current_theme.javascript_path('theme')
141
    end
142
  end
143 0:513646585e45 Chris
end