2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2012-01-03 23:36:40 +04:00
|
|
|
# Copyright (C) 2010-2012 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2007-09-03 00:41:47 +04:00
|
|
|
module Redmine
|
|
|
|
module WikiFormatting
|
2008-10-27 14:08:29 +03:00
|
|
|
@@formatters = {}
|
|
|
|
|
|
|
|
class << self
|
|
|
|
def map
|
|
|
|
yield self
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2008-10-27 14:08:29 +03:00
|
|
|
def register(name, formatter, helper)
|
2010-02-17 23:47:50 +03:00
|
|
|
raise ArgumentError, "format name '#{name}' is already taken" if @@formatters[name.to_s]
|
|
|
|
@@formatters[name.to_s] = {:formatter => formatter, :helper => helper}
|
2007-09-03 00:41:47 +04:00
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2008-10-27 14:08:29 +03:00
|
|
|
def formatter_for(name)
|
2010-02-17 23:47:50 +03:00
|
|
|
entry = @@formatters[name.to_s]
|
2008-10-27 14:08:29 +03:00
|
|
|
(entry && entry[:formatter]) || Redmine::WikiFormatting::NullFormatter::Formatter
|
2007-09-03 00:41:47 +04:00
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2008-10-27 14:08:29 +03:00
|
|
|
def helper_for(name)
|
2010-02-17 23:47:50 +03:00
|
|
|
entry = @@formatters[name.to_s]
|
2008-10-27 14:08:29 +03:00
|
|
|
(entry && entry[:helper]) || Redmine::WikiFormatting::NullFormatter::Helper
|
2007-09-03 00:41:47 +04:00
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2008-10-27 14:08:29 +03:00
|
|
|
def format_names
|
|
|
|
@@formatters.keys.map
|
2007-09-06 21:06:07 +04:00
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2008-10-27 14:08:29 +03:00
|
|
|
def to_html(format, text, options = {}, &block)
|
2012-01-16 20:08:52 +04:00
|
|
|
formatter_for(format).new(text).to_html
|
2010-02-06 13:40:21 +03:00
|
|
|
end
|
2008-10-27 14:08:29 +03:00
|
|
|
end
|
2007-09-03 00:41:47 +04:00
|
|
|
end
|
|
|
|
end
|