[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Log Dialog, Bug-ID column - bug there

From: Stefan Küng <tortoisesvn_at_gmail.com>
Date: 2006-11-15 18:54:39 CET

Ivan Cenov wrote:
> TSVN 1.4.1 / svn 1.2.3 on Apache 2.0.x server
>
> Hello,
> I have following configuration for bugtraq:
> bugtraq:logregex:
> FS#\d+[ ,;.:]
> (\d)

here's the bug.
The second line in your logregex only matches *one* digit at the time!

Now, with that it may *look* as if the link in the log message is
correct, but in fact there are three separate links (1, 4 and 4).

The status column now finds three separate issues, (one, and two times
four). And it removes the second (duplicate) four, and only shows "1 4".

You must change your logregex to:
FS#\d+[ ,;.:]
(\d+)

then it will work correctly.

Stefan

-- 
        ___
   oo  // \\      "De Chelonian Mobile"
  (_,\/ \_/ \     TortoiseSVN
    \ \_/_\_/>    The coolest Interface to (Sub)Version Control
    /_/   \_\     http://tortoisesvn.net
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tortoisesvn.tigris.org
For additional commands, e-mail: users-help@tortoisesvn.tigris.org
Received on Wed Nov 15 18:54:57 2006

This is an archived mail posted to the TortoiseSVN Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.