| Field |
Original Value |
New Value |
|
Description
|
I have parsing-log problems.
The header pattern in SvnChangeLogParser.java doesn't match headers in Subversion log files in my environment.
A header line is like this.
r6 | (no author) | 2005-02-02 15:30:55 +0900 (${day in Japanese}, 02 2 2005) | 1 line
1. Author fields could be "(no author)".
2. Gmt offset could be "+".
Status remains GET_HEADER and entries have never been added .
|
I have parsing-log problems.
The header pattern in SvnChangeLogParser.java doesn't match headers in Subversion log files in my environment.
A header line is like this.
r6 | (no author) | 2005-02-02 15:30:55 +0900 (${day in Japanese}, 02 2 2005) | 1 line
1. Author fields could be "(no author)".
2. Gmt offset could be "+".
Status remains GET_HEADER and entries have never been added .
|
|
Fix Version/s
|
|
1.8
[ 11440
]
|
(Sebastian Scholze)
I Had the same problem with "(no author)".
I changed the variable pattern to fix this issue (at least for me)
Here is what I did:
private static final String pattern =
)(\\d\\d)(\\d
"^r(\\d+)\\s+\\|
s+" + // revision number
"(\\(\\S+\\s+\\S+\\)|\\S+)\\s+\\|
s+" + // author username
"(\\d+
\\d+d+ " + // date 2002-08-24
"\\d+:\\d+:
d+) " + // time 16:01:00
"(\\-+
d)"; // gmt offset -0400
The RE is now checking for a username or for a string like "(no author)"