Changes between Initial Version and Version 1 of Ticket #8399


Ignore:
Timestamp:
Jan 20, 2011, 5:03:31 AM (13 years ago)
Author:
Ryan J Ollos
Comment:

What language do you use on your Trac installation?

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8399 – Description

    initial v1  
    33In the source, I changed code about regex expression and it is working well. It's below
    44
    5 (from) var summaryRegex = /#(\d+)<\/span>:\s*([a-z0-9\-\_\ ]+):\s*(.*)\s*\(([a-z0-9\-\_\ ]+)(?:\: ([a-z0-9\-\_\ ]+))?\)$/i;
    6 
    7 (to) var summaryRegex = /#(\d+)<\/span>:\s*(.*):\s*(.*)\s*\((.*)(?:\: (.*))?\)$/i;
     5{{{
     6#!diff
     7- var summaryRegex = /#(\d+)<\/span>:\s*([a-z0-9\-\_\ ]+):\s*(.*)\s*\(([a-z0-9\-\_\ ]+)(?:\: ([a-z0-9\-\_\ ]+))?\)$/i;
     8+ var summaryRegex = /#(\d+)<\/span>:\s*(.*):\s*(.*)\s*\((.*)(?:\: (.*))?\)$/i;
     9}}}