comparison vendor/plugins/embedded/app/helpers/embedded_helper.rb @ 154:317821dd92c9 feature_20

Add Embedded plugin, for Doxygen/Javadoc use
author Chris Cannam
date Thu, 27 Jan 2011 09:08:03 +0000
parents
children
comparison
equal deleted inserted replaced
149:e7c03e1738fb 154:317821dd92c9
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