[#3833] class VC_Log_svn->processLog(), preg_match bug in WinXP
Summary class VC_Log_svn->processLog(), preg_match bug in WinXP
Queue Chora
Queue Version 2.0.1
Type Bug
State Not A Bug
Priority 2. Medium
Owners
Requester lpetrov (at) mbox (dot) vidin (dot) net
Created 04/25/2006 (753 days ago)
Due
Updated 06/29/2006 (688 days ago)
Assigned 04/27/2006 (751 days ago)
Resolved 06/29/2006 (688 days ago)
Attachments
Milestone
Patch

History
06/29/2006 Jan Schneider Comment #4
State ⇒ Not A Bug
Reply to this comment
No feedback
05/17/2006 Jan Schneider Comment #3 Reply to this comment
Hello?
04/27/2006 Jan Schneider Comment #2
State ⇒ Feedback
Reply to this comment
Can you please post an example output of a "svn log -v" command on windows?
04/25/2006 lpetrov (at) mbox (dot) vidin (dot) net Comment #1
Queue ⇒ Chora
Type ⇒ Bug
State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Summary ⇒ class VC_Log_svn->processLog(), preg_match bug in WinXP
Reply to this comment
if (preg_match('/^r([0-9]*) \| (.*?) \| (.*) \(.*\) \| ([0-9]*) lines?$/', $line, $matches)) {

this preg_match doesnt work for me when using the Subversion (not cvs)

The workaround is:
if (preg_match('/^r([0-9]*) \| (.*?) \| (.*) (.*) \| ([0-9]*) lines?$/', $line, $matches)) {


Running: subversion-1.3.1 on Windows XP Proffesional (with svnservice as service)