| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							|  |  |  | # Copyright (C) 2006-2008  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-11-12 14:36:33 +00: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. | 
					
						
							|  |  |  | #  | 
					
						
							|  |  |  | # This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | # but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | # GNU General Public License for more details. | 
					
						
							|  |  |  | #  | 
					
						
							|  |  |  | # You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | # along with this program; if not, write to the Free Software | 
					
						
							|  |  |  | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-02 20:41:47 +00:00
										 |  |  | module Redmine | 
					
						
							|  |  |  |   module WikiFormatting | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |     @@formatters = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     class << self | 
					
						
							|  |  |  |       def map | 
					
						
							|  |  |  |         yield self | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2007-09-09 10:16:59 +00:00
										 |  |  |        | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |       def register(name, formatter, helper) | 
					
						
							| 
									
										
										
										
											2010-02-17 20:47:50 +00:00
										 |  |  |         raise ArgumentError, "format name '#{name}' is already taken" if @@formatters[name.to_s] | 
					
						
							|  |  |  |         @@formatters[name.to_s] = {:formatter => formatter, :helper => helper} | 
					
						
							| 
									
										
										
										
											2007-09-02 20:41:47 +00:00
										 |  |  |       end | 
					
						
							|  |  |  |        | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |       def formatter_for(name) | 
					
						
							| 
									
										
										
										
											2010-02-17 20:47:50 +00:00
										 |  |  |         entry = @@formatters[name.to_s] | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |         (entry && entry[:formatter]) || Redmine::WikiFormatting::NullFormatter::Formatter | 
					
						
							| 
									
										
										
										
											2007-09-02 20:41:47 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |        | 
					
						
							|  |  |  |       def helper_for(name) | 
					
						
							| 
									
										
										
										
											2010-02-17 20:47:50 +00:00
										 |  |  |         entry = @@formatters[name.to_s] | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |         (entry && entry[:helper]) || Redmine::WikiFormatting::NullFormatter::Helper | 
					
						
							| 
									
										
										
										
											2007-09-02 20:41:47 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2007-09-06 17:06:07 +00:00
										 |  |  |        | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |       def format_names | 
					
						
							|  |  |  |         @@formatters.keys.map | 
					
						
							| 
									
										
										
										
											2007-09-06 17:06:07 +00:00
										 |  |  |       end | 
					
						
							|  |  |  |        | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |       def to_html(format, text, options = {}, &block) | 
					
						
							| 
									
										
										
										
											2010-02-06 13:13:40 +00:00
										 |  |  |         text = if Setting.cache_formatted_text? && text.size > 2.kilobyte && cache_store && cache_key = cache_key_for(format, options[:object], options[:attribute]) | 
					
						
							| 
									
										
										
										
											2010-02-06 10:40:21 +00:00
										 |  |  |           # Text retrieved from the cache store may be frozen | 
					
						
							|  |  |  |           # We need to dup it so we can do in-place substitutions with gsub! | 
					
						
							| 
									
										
										
										
											2010-02-06 13:13:40 +00:00
										 |  |  |           cache_store.fetch cache_key do | 
					
						
							| 
									
										
										
										
											2010-02-06 10:40:21 +00:00
										 |  |  |             formatter_for(format).new(text).to_html | 
					
						
							|  |  |  |           end.dup | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |           formatter_for(format).new(text).to_html | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         if block_given? | 
					
						
							|  |  |  |           execute_macros(text, block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         text | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       # Returns a cache key for the given text +format+, +object+ and +attribute+ or nil if no caching should be done | 
					
						
							|  |  |  |       def cache_key_for(format, object, attribute) | 
					
						
							|  |  |  |         if object && attribute && !object.new_record? && object.respond_to?(:updated_on) && !format.blank? | 
					
						
							|  |  |  |           "formatted_text/#{format}/#{object.class.model_name.cache_key}/#{object.id}-#{attribute}-#{object.updated_on.to_s(:number)}" | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |        | 
					
						
							|  |  |  |       # Returns the cache store used to cache HTML output | 
					
						
							| 
									
										
										
										
											2010-02-06 13:13:40 +00:00
										 |  |  |       def cache_store | 
					
						
							| 
									
										
										
										
											2010-02-06 10:40:21 +00:00
										 |  |  |         ActionController::Base.cache_store | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |        | 
					
						
							|  |  |  |       MACROS_RE = /
 | 
					
						
							|  |  |  |                     (!)?                        # escaping | 
					
						
							|  |  |  |                     ( | 
					
						
							|  |  |  |                     \{\{                        # opening tag | 
					
						
							|  |  |  |                     ([\w]+)                     # macro name | 
					
						
							|  |  |  |                     (\(([^\}]*)\))?             # optional arguments | 
					
						
							|  |  |  |                     \}\}                        # closing tag | 
					
						
							|  |  |  |                     ) | 
					
						
							|  |  |  |                   /x unless const_defined?(:MACROS_RE)
 | 
					
						
							|  |  |  |        | 
					
						
							|  |  |  |       # Macros substitution | 
					
						
							|  |  |  |       def execute_macros(text, macros_runner) | 
					
						
							|  |  |  |         text.gsub!(MACROS_RE) do | 
					
						
							|  |  |  |           esc, all, macro = $1, $2, $3.downcase | 
					
						
							|  |  |  |           args = ($5 || '').split(',').each(&:strip) | 
					
						
							|  |  |  |           if esc.nil? | 
					
						
							|  |  |  |             begin | 
					
						
							|  |  |  |               macros_runner.call(macro, args) | 
					
						
							|  |  |  |             rescue => e | 
					
						
							|  |  |  |               "<div class=\"flash error\">Error executing the <strong>#{macro}</strong> macro (#{e})</div>" | 
					
						
							|  |  |  |             end || all | 
					
						
							|  |  |  |           else | 
					
						
							|  |  |  |             all | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     # Default formatter module | 
					
						
							|  |  |  |     module NullFormatter | 
					
						
							|  |  |  |       class Formatter | 
					
						
							|  |  |  |         include ActionView::Helpers::TagHelper | 
					
						
							|  |  |  |         include ActionView::Helpers::TextHelper | 
					
						
							| 
									
										
										
										
											2009-11-24 22:02:14 +00:00
										 |  |  |         include ActionView::Helpers::UrlHelper | 
					
						
							| 
									
										
										
										
											2008-07-28 17:08:16 +00:00
										 |  |  |          | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |         def initialize(text) | 
					
						
							|  |  |  |           @text = text | 
					
						
							| 
									
										
										
										
											2007-09-09 10:16:59 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |          | 
					
						
							|  |  |  |         def to_html(*args) | 
					
						
							|  |  |  |           simple_format(auto_link(CGI::escapeHTML(@text))) | 
					
						
							| 
									
										
										
										
											2007-09-09 10:16:59 +00:00
										 |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |        | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |       module Helper | 
					
						
							|  |  |  |         def wikitoolbar_for(field_id) | 
					
						
							| 
									
										
										
										
											2007-11-12 14:36:33 +00:00
										 |  |  |         end | 
					
						
							|  |  |  |        | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |         def heads_for_wiki_formatter | 
					
						
							| 
									
										
										
										
											2007-09-02 20:41:47 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |        | 
					
						
							|  |  |  |         def initial_page_content(page) | 
					
						
							|  |  |  |           page.pretty_title.to_s | 
					
						
							| 
									
										
										
										
											2007-09-02 20:41:47 +00:00
										 |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |