| 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 |
State ⇒ Not A Bug
No feedbackHello?State ⇒ Feedback
Can you please post an example output of a "svn log -v" command on windows?Queue ⇒ Chora
Type ⇒ Bug
State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Summary ⇒ class VC_Log_svn->processLog(), preg_match bug in WinXP
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)