comparison vendor/plugins/embedded/app/helpers/embedded_helper.rb @ 247:73ff0e6a11b1 cannam

* Merge from branch cannam-pre-20110113-merge
author Chris Cannam
date Thu, 03 Mar 2011 12:11:53 +0000
parents 317821dd92c9
children
comparison
equal deleted inserted replaced
246:eeebe205a056 247:73ff0e6a11b1
1 # Redmine - project management software
2 # Copyright (C) 2008 Jean-Philippe Lang
3 #
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 #
9 # 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 #
14 # 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 EmbeddedHelper
19
20 # Adds include tags for assets of the given template
21 def asset_include_tags(template)
22
23 Redmine::Plugins::Embedded.assets(template).each { |asset| content_for(:header_tags) { asset_include_tag(asset) } }
24 end
25
26 private
27
28 def asset_include_tag(asset)
29 if asset =~ %r{\.js$}
30 javascript_include_tag(asset, :plugin => 'embedded')
31 else
32 stylesheet_link_tag(asset, :plugin => 'embedded')
33 end
34 end
35 end