Changes between Initial Version and Version 21 of Ticket #11773
- Timestamp:
- Feb 25, 2015, 10:59:35 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11773
- Property Status new → assigned
- Property Cc added
- Property Summary Image links based on RFC2397 not supported → [PATCH] Image links based on RFC2397 not supported
- Property Version → 1.0.1
- Property Milestone → 1.0.5
- Property Owner set to
-
Ticket #11773 – Description
initial v21 1 Directly included images in th is RFC format http://tools.ietf.org/html/rfc2397 aren't supported. They don't work in {{{[[Image()]]}}} macro nor in {{{#!html}}}1 Directly included images in the rfc:2397 format isn't supported. They don't work in {{{[[Image()]]}}} macro nor in {{{#!html}}} 2 2 processor. 3 3 4 {{{data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoAQMAAAC2MCouAAAAA1BMVEXLQ0MOAUiXAAAAC0lEQVQIHWMYYQAAAPAAASEIRrcAAAAASUVORK5CYII=}}} 4 {{{ 5 data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoAQMAAAC2MCouAAAAA1BMVEXLQ0MOAUiXAAAAC0lE 6 QVQIHWMYYQAAAPAAASEIRrcAAAAASUVORK5CYII= 7 }}} 5 8 6 See also #8168 which comes up again, as there is a comma in the string which can't be encoded as %2c, otherwise fix would be easy.9 See also #8168 which comes up again, as there is a comma in the string which can't be encoded as `%2c`, otherwise fix would be easy. 7 10 8 Fix for "data:" is easy, simply handle it like http:, but the comma is a problem again. Proper argument splitting is required.11 Fix for `data:` is easy, simply handle it like `http:`, but the comma is a problem again. Proper argument splitting is required. 9 12 10 {{{ 11 #!diff 13 {{{#!diff 12 14 --- macros.py_orig 2014-10-04 21:33:12.000000000 +0200 13 15 +++ macros.py 2014-10-04 21:51:16.000000000 +0200 -
Ticket #11773 – Release Notes
initial v21 1 The [rfc:2397 data] URL scheme can be used with the [WikiMacros#Image-macro Image macro].