Changes between Initial Version and Version 2 of Ticket #10958


Ignore:
Timestamp:
May 27, 2013, 3:31:11 AM (11 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #10958

    • Property Owner changed from Douglas Clifton to Ryan J Ollos
    • Property Priority changed from normal to high
    • Property Status changed from new to assigned
  • Ticket #10958 – Description

    initial v2  
    33[test](mailto:email@example.com)
    44}}}
    5 and viewer doesn't have EMAIL_VIEW permission, it end up with exception (AttributeError: 'NoneType' object has no attribute 'group').
     5and viewer doesn't have EMAIL_VIEW permission, it end up with exception (`AttributeError: 'NoneType' object has no attribute 'group'`).
    66
    7 Trac convert such links (Formatter called from Markdown/macro.py) to:
     7Trac converts such links (Formatter called from Markdown/macro.py) to:
    88{{{
     9#!text/html
    910<p>email@…
    1011</p>
     
    1213which doesn't match to HREF regexp. This causes exception on line 48 in Markdown/macro.py:
    1314{{{
     15#!python
    1416url = re.search(HREF, out.getvalue()).groups()[0]
    1517}}}