Re: [Bulk] Re: Build Not required
Jim Hague <[email protected]> Mon, 5 Jun 2006 20:04:37 +0100
| Newsgroups | gmane.comp.java.anthill |
|---|---|
| Message-ID | <[email protected]> |
On Monday 5 June 2006 17:58, Res Pons wrote:
> Is it in the latest release or the new version to be released sometime this
> Summer?
Oops. I mailed from memory. Now I've checked.
Philip's problem was a regular expression not dealing with usernames
containing spaces; like the '(no author)' reported when a Subversion
repository is updated via anonymous write through Apache. This was fixed in
CVS in April, and so will (I presume) be in the next release. This sounds a
candidate for Marcio's problem, if he is accessing the repository via
http(s).
The fix is straightforward. In parseLogCommandResult():
- headerRE = new RE("^r(\\d+) \\| (\\S+) \\| ([^\\(]+)");
+ headerRE = new RE("^r(\\d+) \\| ([^\\|]+) \\| ([^\\(]+)");
1.8.1, released in February, fixed a date problem that caused unnecessary
builds to occur, and corrected tagging so it is guaranteed to happen at the
revision built. Previously it was possible for a change checked in after the
build began to be included in the tag.
--
Jim Hague - [email protected] Never trust a computer you can't lift.