Project

General

Profile

Actions

Patch #27114

closed

Make robust Redmine::Helpers::URL#uri_with_safe_scheme?

Added by okkez _ over 6 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Text formatting
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:

Description

I'm developing new formatter for CommonMark.

commonmarker gem will create wrong autolink like https://github.com/github/cmark/issues/57 .

n@.  b

will convert to

<p><a href="mailto:n@">n@</a>. b</p>

This causes `URI::InvalidComponentError`.

And I test with Redmine 3.4.2's Markdown formatter with following text.

[a@](a@)

This also causes `URI::InvalidComponentError`.

I wrote some patches to avoid these errors.


Files

make-robust.diff (1.2 KB) make-robust.diff okkez _, 2017-10-03 03:02
Actions #1

Updated by Go MAEDA over 6 years ago

  • Category changed from Wiki to Text formatting
  • Target version set to 4.0.0

I observed the following error when the exception class at source:tags/3.4.2/lib/redmine/helpers/url.rb#L30 is URI::InvalidURIError.
Setting target version to 4.0.0.

$ ruby test/unit/lib/redmine/helpers/url_test.rb
Run options: --seed 58810

# Running:

.E

Error:
URLTest#test_uri_with_safe_scheme_invalid_component:
URI::InvalidComponentError: unrecognised opaque part for mailtoURL: root@
    lib/redmine/helpers/url.rb:29:in `uri_with_safe_scheme?'
    test/unit/lib/redmine/helpers/url_test.rb:15:in `test_uri_with_safe_scheme_invalid_component'
Actions #2

Updated by Go MAEDA over 6 years ago

  • Status changed from New to Closed
  • Assignee set to Go MAEDA

Committed in the trunk. Thank you for your contribution.

Actions

Also available in: Atom PDF