Project

General

Profile

Actions

Defect #2827

closed

{{{foo}}} without spaces incorrectly imported

Added by Daniel Svensson about 15 years ago. Updated almost 11 years ago.

Status:
Closed
Priority:
Normal
Assignee:
-
Category:
Importers
Target version:
-
Start date:
2009-02-24
Due date:
% Done:

0%

Estimated time:
Resolution:
Cant reproduce
Affected version:

Description

When importing {{{foo}}}, note that there are no spaces between curly braces and the word within them, the result is <pre>. If I instead add space between the braces the result is properly interpreted as <pre>foo</pre>

Actions #1

Updated by Daniel Svensson about 15 years ago

Daniel Svensson wrote:

When importing {{{foo}}}, note that there are no spaces between curly braces and the word within them, the result is <pre>. If I instead add space between the braces the result is properly interpreted as <pre>foo</pre>

Humm.. further investigation hints that this might be a problem with one-liner {{{ }}} everywhere no matter if they have spaces or not.

Actions #2

Updated by Daniel Svensson about 15 years ago

Maybe oneliner {{{Inline Code}}} should be translated to Inline Code?

Actions #3

Updated by Daniel Svensson about 15 years ago

Daniel Svensson wrote:

Maybe oneliner {{{Inline Code}}} should be translated to Inline Code?

@Inline Code@
even
Actions #4

Updated by Daniel Svensson about 15 years ago

oh the spam, oh the sorrow.. forgot to mention that is is an issue with the Trac importer.

Actions #5

Updated by Daniel Svensson about 15 years ago

Add following somewhere in convert_wiki_text:

  # Inlined code
  text = text.gsub(/\{\{\{([^\}^\n]+)\}\}\}/) { |s| "@#{$1.strip}@" }

Test cases:

puts convert_wiki_text("{{{ spider pig spider pig }}}")
puts convert_wiki_text("{{{spider pig spider pig}}}")
puts convert_wiki_text("{{{\nspider pig spider pig\n}}}")

Output:

@spider pig spider pig@
@spider pig spider pig@
<pre>
spider pig spider pig
</pre>

Actions #6

Updated by Daniel Felix about 11 years ago

Hi there,

are there any news on this? Is this still reproduceable with Redmine 2.2?

Can someone test this please?

Actions #7

Updated by Jean-Baptiste Barth almost 11 years ago

  • Status changed from New to Closed
  • Resolution set to Cant reproduce

Maybe improved with r2011. I close this issue as there's no feedback.

Actions

Also available in: Atom PDF