* Defect #11061: Cannot choose commit versions to view differences in Git/Mercurial repository view
* Defect #11112: REST API - custom fields in POST/PUT ignored for time_entries
+* Defect #11133: Wiki-page section edit link can point to incorrect section
* Feature #6597: Configurable session lifetime and timeout
* Patch #11113: Small glitch in German localization
l = 1
started = false
ended = false
- text.scan(/(((?:.*?)(\A|\r?\n\r?\n))(h(\d+)(#{A}#{C})\.(?::(\S+))? (.*?)$)|.*)/m).each do |all, content, lf, heading, level|
+ text.scan(/(((?:.*?)(\A|\r?\n\s*\r?\n))(h(\d+)(#{A}#{C})\.(?::(\S+))? (.*?)$)|.*)/m).each do |all, content, lf, heading, level|
if heading.nil?
if ended
after << all
@formatter.new(text).update_section(3, replacement)
end
+ def test_get_section_should_support_lines_with_spaces_before_heading
+ # the lines after Content 2 and Heading 4 contain a space
+ text = <<-STR
+h1. Heading 1
+
+Content 1
+
+h1. Heading 2
+
+Content 2
+
+h1. Heading 3
+
+Content 3
+
+h1. Heading 4
+
+Content 4
+STR
+
+ [1, 2, 3, 4].each do |index|
+ assert_match /\Ah1. Heading #{index}.+Content #{index}/m, @formatter.new(text).get_section(index).first
+ end
+ end
+
private
def assert_html_output(to_test, expect_paragraph = true)