Adds an option to macro definition to disable arguments parsing (#11578).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10174 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
405bcc10c0
commit
e2d6f0af4e
|
@ -860,8 +860,7 @@ module ApplicationHelper
|
||||||
# Macros substitution
|
# Macros substitution
|
||||||
def parse_macros(text, project, obj, attr, only_path, options)
|
def parse_macros(text, project, obj, attr, only_path, options)
|
||||||
text.gsub!(MACROS_RE) do
|
text.gsub!(MACROS_RE) do
|
||||||
esc, all, macro = $1, $2, $3.downcase
|
esc, all, macro, args = $1, $2, $3.downcase, $5.to_s
|
||||||
args = ($5 || '').split(',').each(&:strip)
|
|
||||||
if esc.nil?
|
if esc.nil?
|
||||||
begin
|
begin
|
||||||
exec_macro(macro, obj, args)
|
exec_macro(macro, obj, args)
|
||||||
|
|
|
@ -20,7 +20,13 @@ module Redmine
|
||||||
module Macros
|
module Macros
|
||||||
module Definitions
|
module Definitions
|
||||||
def exec_macro(name, obj, args)
|
def exec_macro(name, obj, args)
|
||||||
|
macro_options = Redmine::WikiFormatting::Macros.available_macros[name.to_sym]
|
||||||
|
return unless macro_options
|
||||||
|
|
||||||
method_name = "macro_#{name}"
|
method_name = "macro_#{name}"
|
||||||
|
unless macro_options[:parse_args] == false
|
||||||
|
args = args.split(',').map(&:strip)
|
||||||
|
end
|
||||||
send(method_name, obj, args) if respond_to?(method_name)
|
send(method_name, obj, args) if respond_to?(method_name)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -35,6 +41,7 @@ module Redmine
|
||||||
end
|
end
|
||||||
|
|
||||||
@@available_macros = {}
|
@@available_macros = {}
|
||||||
|
mattr_accessor :available_macros
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
# Called with a block to define additional macros.
|
# Called with a block to define additional macros.
|
||||||
|
@ -54,11 +61,28 @@ module Redmine
|
||||||
class_eval(&block) if block_given?
|
class_eval(&block) if block_given?
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
# Defines a new macro with the given name, options and block.
|
||||||
# Defines a new macro with the given name and block.
|
#
|
||||||
def macro(name, &block)
|
# Options:
|
||||||
|
# * :parse_args => false - Disables arguments parsing (the whole arguments string
|
||||||
|
# is passed to the macro)
|
||||||
|
#
|
||||||
|
# Examples:
|
||||||
|
# By default, when the macro is invoked, the coma separated list of arguments
|
||||||
|
# is parsed and passed to the macro block as an array:
|
||||||
|
#
|
||||||
|
# macro :my_macro do |obj, args|
|
||||||
|
# # args is an array
|
||||||
|
# end
|
||||||
|
#
|
||||||
|
# You can disable arguments parsing with the :parse_args => false option:
|
||||||
|
#
|
||||||
|
# macro :my_macro, :parse_args => false do |obj, args|
|
||||||
|
# # args is a string
|
||||||
|
# end
|
||||||
|
def macro(name, options={}, &block)
|
||||||
name = name.to_sym if name.is_a?(String)
|
name = name.to_sym if name.is_a?(String)
|
||||||
@@available_macros[name] = @@desc || ''
|
@@available_macros[name] = {:desc => @@desc || ''}.merge(options)
|
||||||
@@desc = nil
|
@@desc = nil
|
||||||
raise "Can not create a macro without a block!" unless block_given?
|
raise "Can not create a macro without a block!" unless block_given?
|
||||||
Definitions.send :define_method, "macro_#{name}".downcase, &block
|
Definitions.send :define_method, "macro_#{name}".downcase, &block
|
||||||
|
@ -79,9 +103,9 @@ module Redmine
|
||||||
desc "Displays a list of all available macros, including description if available."
|
desc "Displays a list of all available macros, including description if available."
|
||||||
macro :macro_list do |obj, args|
|
macro :macro_list do |obj, args|
|
||||||
out = ''.html_safe
|
out = ''.html_safe
|
||||||
@@available_macros.keys.collect(&:to_s).sort.each do |macro|
|
@@available_macros.each do |macro, options|
|
||||||
out << content_tag('dt', content_tag('code', macro))
|
out << content_tag('dt', content_tag('code', macro.to_s))
|
||||||
out << content_tag('dd', textilizable(@@available_macros[macro.to_sym]))
|
out << content_tag('dd', textilizable(options[:desc]))
|
||||||
end
|
end
|
||||||
content_tag('dl', out)
|
content_tag('dl', out)
|
||||||
end
|
end
|
||||||
|
|
|
@ -43,12 +43,26 @@ class Redmine::WikiFormatting::MacrosTest < ActionView::TestCase
|
||||||
def test_macro_registration
|
def test_macro_registration
|
||||||
Redmine::WikiFormatting::Macros.register do
|
Redmine::WikiFormatting::Macros.register do
|
||||||
macro :foo do |obj, args|
|
macro :foo do |obj, args|
|
||||||
"Foo macro output"
|
"Foo: #{args.size} (#{args.join(',')}) (#{args.class.name})"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
text = "{{foo}}"
|
assert_equal '<p>Foo: 0 () (Array)</p>', textilizable("{{foo}}")
|
||||||
assert_equal '<p>Foo macro output</p>', textilizable(text)
|
assert_equal '<p>Foo: 0 () (Array)</p>', textilizable("{{foo()}}")
|
||||||
|
assert_equal '<p>Foo: 1 (arg1) (Array)</p>', textilizable("{{foo(arg1)}}")
|
||||||
|
assert_equal '<p>Foo: 2 (arg1,arg2) (Array)</p>', textilizable("{{foo(arg1, arg2)}}")
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_macro_registration_parse_args_set_to_false_should_disable_arguments_parsing
|
||||||
|
Redmine::WikiFormatting::Macros.register do
|
||||||
|
macro :bar, :parse_args => false do |obj, args|
|
||||||
|
"Bar: (#{args}) (#{args.class.name})"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
assert_equal '<p>Bar: (args, more args) (String)</p>', textilizable("{{bar(args, more args)}}")
|
||||||
|
assert_equal '<p>Bar: () (String)</p>', textilizable("{{bar}}")
|
||||||
|
assert_equal '<p>Bar: () (String)</p>', textilizable("{{bar()}}")
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_macro_hello_world
|
def test_macro_hello_world
|
||||||
|
|
Loading…
Reference in New Issue