Changes between Initial Version and Version 3 of Ticket #3382


Ignore:
Timestamp:
Aug 10, 2020, 6:47:01 PM (4 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3382

    • Property Owner permon deleted
  • Ticket #3382 – Description

    initial v3  
    1 This patch is against http://trac-hacks.org/svn/mediawikipluginmacro (r2483)
    2 
    3  * Fixed issue where _specialUrlPat regex in replaceFreeExternalLinks was failing to render external links in paragraphs containing newlines because the re.DOTALL regex flag was not being used to allow .* to match newlines.
    4 
    5  * Fixed bug in replaceFreeExternalLinks where the loop variable 'i' was being stepped on for another purpose by code inside the loop.
    6 
    7  * Fixed regex issue where control-char ranges for ascii were being specified to match against unicode strings.
    8 
    9  * Fixed issue where nextItem was called with only one rather than the required two parameters.
    10 
    11  * Support rendering of anchor links such as: {{{[[#heading 4|heading four]]}}}
    12 
     1This patch is against r2483:
     2* Fixed issue where `_specialUrlPat` regex in `replaceFreeExternalLinks` was failing to render external links in paragraphs containing newlines because the `re.DOTALL` regex flag was not being used to allow .* to match newlines.
     3* Fixed bug in `replaceFreeExternalLinks` where the loop variable `i` was being stepped on for another purpose by code inside the loop.
     4* Fixed regex issue where control-char ranges for ascii were being specified to match against unicode strings.
     5* Fixed issue where `nextItem` was called with only one rather than the required two parameters.
     6* Support rendering of anchor links such as: `[[#heading 4|heading four]]`