| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | # Copyright (C) 2006-2011  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. | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-11-12 14:36:33 +00:00
										 |  |  | # 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. | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-11-12 14:36:33 +00:00
										 |  |  | # 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 | 
					
						
							| 
									
										
										
										
											2011-11-18 16:25:00 +00:00
										 |  |  |     class StaleSectionError < Exception; end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |     @@formatters = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     class << self | 
					
						
							|  |  |  |       def map | 
					
						
							|  |  |  |         yield self | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +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 | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-18 16:25:00 +00:00
										 |  |  |       def formatter | 
					
						
							|  |  |  |         formatter_for(Setting.text_formatting) | 
					
						
							|  |  |  |       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 | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +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 | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-18 16:25:00 +00:00
										 |  |  |       def to_html(format, text, options = {}) | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |         text | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-18 16:41:54 +00:00
										 |  |  |       # Returns true if the text formatter supports single section edit | 
					
						
							|  |  |  |       def supports_section_edit? | 
					
						
							|  |  |  |         (formatter.instance_methods & ['update_section', :update_section]).any? | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-06 10:40:21 +00:00
										 |  |  |       # 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 | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-06 10:40:21 +00:00
										 |  |  |       # 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 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-04 10:04:46 +00:00
										 |  |  |     module LinksHelper | 
					
						
							|  |  |  |       AUTO_LINK_RE = %r{
 | 
					
						
							|  |  |  |                       (                          # leading text | 
					
						
							|  |  |  |                         <\w+.*?>|                # leading HTML tag, or | 
					
						
							|  |  |  |                         [^=<>!:'"/]|             # leading punctuation, or
 | 
					
						
							|  |  |  |                         ^                        # beginning of line | 
					
						
							|  |  |  |                       ) | 
					
						
							|  |  |  |                       ( | 
					
						
							|  |  |  |                         (?:https?://)|           # protocol spec, or | 
					
						
							|  |  |  |                         (?:s?ftps?://)| | 
					
						
							|  |  |  |                         (?:www\.)                # www.* | 
					
						
							|  |  |  |                       ) | 
					
						
							|  |  |  |                       ( | 
					
						
							|  |  |  |                         (\S+?)                   # url | 
					
						
							|  |  |  |                         (\/)?                    # slash | 
					
						
							|  |  |  |                       ) | 
					
						
							|  |  |  |                       ((?:>)?|[^\w\=\/;\(\)]*?)               # post | 
					
						
							|  |  |  |                       (?=<|\s|$) | 
					
						
							|  |  |  |                      }x unless const_defined?(:AUTO_LINK_RE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       # Destructively remplaces urls into clickable links | 
					
						
							|  |  |  |       def auto_link!(text) | 
					
						
							|  |  |  |         text.gsub!(AUTO_LINK_RE) do | 
					
						
							|  |  |  |           all, leading, proto, url, post = $&, $1, $2, $3, $6 | 
					
						
							|  |  |  |           if leading =~ /<a\s/i || leading =~ /![<>=]?/ | 
					
						
							|  |  |  |             # don't replace URL's that are already linked | 
					
						
							|  |  |  |             # and URL's prefixed with ! !> !< != (textile images) | 
					
						
							|  |  |  |             all | 
					
						
							|  |  |  |           else | 
					
						
							|  |  |  |             # Idea below : an URL with unbalanced parethesis and | 
					
						
							|  |  |  |             # ending by ')' is put into external parenthesis | 
					
						
							|  |  |  |             if ( url[-1]==?) and ((url.count("(") - url.count(")")) < 0 ) ) | 
					
						
							|  |  |  |               url=url[0..-2] # discard closing parenth from url | 
					
						
							|  |  |  |               post = ")"+post # add closing parenth to post | 
					
						
							|  |  |  |             end | 
					
						
							|  |  |  |             tag = content_tag('a', proto + url, :href => "#{proto=="www."?"http://www.":proto}#{url}", :class => 'external') | 
					
						
							|  |  |  |             %(#{leading}#{tag}#{post}) | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       # Destructively remplaces email addresses into clickable links | 
					
						
							|  |  |  |       def auto_mailto!(text) | 
					
						
							|  |  |  |         text.gsub!(/([\w\.!#\$%\-+.]+@[A-Za-z0-9\-]+(\.[A-Za-z0-9\-]+)+)/) do | 
					
						
							|  |  |  |           mail = $1 | 
					
						
							|  |  |  |           if text.match(/<a\b[^>]*>(.*)(#{Regexp.escape(mail)})(.*)<\/a>/) | 
					
						
							|  |  |  |             mail | 
					
						
							|  |  |  |           else | 
					
						
							|  |  |  |             content_tag('a', mail, :href => "mailto:#{mail}", :class => "email") | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end       | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |     # 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 | 
					
						
							| 
									
										
										
										
											2012-03-04 10:04:46 +00:00
										 |  |  |         include Redmine::WikiFormatting::LinksHelper | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |         def initialize(text) | 
					
						
							|  |  |  |           @text = text | 
					
						
							| 
									
										
										
										
											2007-09-09 10:16:59 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |         def to_html(*args) | 
					
						
							| 
									
										
										
										
											2012-03-04 10:04:46 +00:00
										 |  |  |           t = CGI::escapeHTML(@text) | 
					
						
							|  |  |  |           auto_link!(t) | 
					
						
							|  |  |  |           auto_mailto!(t) | 
					
						
							|  |  |  |           simple_format(t) | 
					
						
							| 
									
										
										
										
											2007-09-09 10:16:59 +00:00
										 |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |       module Helper | 
					
						
							|  |  |  |         def wikitoolbar_for(field_id) | 
					
						
							| 
									
										
										
										
											2007-11-12 14:36:33 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-27 11:08:29 +00:00
										 |  |  |         def heads_for_wiki_formatter | 
					
						
							| 
									
										
										
										
											2007-09-02 20:41:47 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2011-09-01 00:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 |