Quellcode durchsuchen

Fixed: Wiki section edit escapes code tags inside pre blocks (#9673).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7975 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.3.0
Jean-Philippe Lang vor 12 Jahren
Ursprung
Commit
c5cabfe106

+ 2
- 1
lib/redmine/wiki_formatting/textile/formatter.rb Datei anzeigen

end end
end end
sections = [before.strip, s.strip, after.strip] sections = [before.strip, s.strip, after.strip]
sections.each {|section| smooth_offtags section}
sections.each {|section| smooth_offtags_without_code_highlighting section}
sections sections
end end


text.gsub!( /(.)\n(?!\n|\Z| *([#*=]+(\s|$)|[{|]))/, "\\1<br />" ) if hard_breaks text.gsub!( /(.)\n(?!\n|\Z| *([#*=]+(\s|$)|[{|]))/, "\\1<br />" ) if hard_breaks
end end


alias :smooth_offtags_without_code_highlighting :smooth_offtags
# Patch to add code highlighting support to RedCloth # Patch to add code highlighting support to RedCloth
def smooth_offtags( text ) def smooth_offtags( text )
unless @pre_list.empty? unless @pre_list.empty?

+ 5
- 0
test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb Datei anzeigen

# 1 # 1
"h2. Heading 2 "h2. Heading 2


<pre><code class=\"ruby\">
def foo
end
</code></pre>

Morbi facilisis accumsan orci non pharetra. Morbi facilisis accumsan orci non pharetra.


<pre> <pre>

Laden…
Abbrechen
Speichern