| 
									
										
										
										
											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) | 
					
						
							|  |  |  |         raise ArgumentError, "format name '#{name}' is already taken" if @@formatters[name] | 
					
						
							|  |  |  |         @@formatters[name.to_sym] = {: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) | 
					
						
							|  |  |  |         entry = @@formatters[name.to_sym] | 
					
						
							|  |  |  |         (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) | 
					
						
							|  |  |  |         entry = @@formatters[name.to_sym] | 
					
						
							|  |  |  |         (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) | 
					
						
							|  |  |  |         formatter_for(format).new(text).to_html(&block) | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     # Default formatter module | 
					
						
							|  |  |  |     module NullFormatter | 
					
						
							|  |  |  |       class Formatter | 
					
						
							|  |  |  |         include ActionView::Helpers::TagHelper | 
					
						
							|  |  |  |         include ActionView::Helpers::TextHelper | 
					
						
							| 
									
										
										
										
											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 |