Patch #26682
closedURL-escape the ! character in generated markup for dropped uploads
0%
Description
In #26071, we introduced the ability to just drag an image into a textbox and have Redmine generate the correct image markup for the uploaded file for easy inclusion.
Unfortunately, the !
character in the filename is not escaped here. Thus, when using Textile as the markup language and if the filename of the dropped file contains a !
character, the resulting markup will be invalid and the image will not be correctly referenced in the generated HTML.
The attached patch fixes this by explicitly percent-escaping the exclamation mark. While this step is not strictly required for markdown, it doesn't hurt there since the escaped version is strictly equivalent to the unescaped one for URLs.
Files
Related issues
Updated by Go MAEDA over 7 years ago
- File 26682-before@2x.png 26682-before@2x.png added
- File 26682-after@2x.png 26682-after@2x.png added
- Target version set to 3.4.3
Confirmed the problem. Setting target version to 3.4.3.
Thank you for sharing the patch.
Before:
After:
Updated by Go MAEDA over 7 years ago
- File parentheses@2x.png parentheses@2x.png added
- Status changed from New to Needs feedback
- Assignee set to Holger Just
'(' and ')' have to be escaped for Markdown formatter.
Holger, would you update the patch to escape those characters?
Updated by Holger Just over 7 years ago
- File 0001-URL-escape-additional-characters-with-special-meanin.patch 0001-URL-escape-additional-characters-with-special-meanin.patch added
Thank you for the review Maeda-san. I had a look at the Markdown generation but completely missed the parenthesis. In addition to that, it turns out that in my previous patch, only the first instance of an exclamation mark would have been escaped
The attached patch fixes both of these issues. It completely supersedes the previous patch.
Updated by Go MAEDA over 7 years ago
- Status changed from Needs feedback to New
- Assignee deleted (
Holger Just)
I have tested the updated patch (#26682#note-3). Now it works fine in both Markdown and Textile.
Thank you for updating the patch so quickly.
Updated by Go MAEDA over 7 years ago
- Related to Feature #26071: Generate markup for uploaded image dropped into wiki-edit textarea added
Updated by Jean-Philippe Lang about 7 years ago
- Status changed from New to Closed
- Assignee set to Jean-Philippe Lang
Patch committed, thanks.