1 The _bzr_ plug echoes "added: somefile.mdwn" when it adds somefile.mdwn to the repository. As a result, the redirect performed after a new article is created fails because the _bzr_ output comes before the HTTP headers.
3 The fix is simply to call `bzr` with the _--quiet_ switch. Something like this applied to _bzr.pm_ works for me:
6 < my @cmdline = ("bzr", $config{srcdir}, "update");
8 > my @cmdline = ("bzr", "update", "--quiet", $config{srcdir});
10 < my @cmdline = ("bzr", "commit", "-m", $message, "--author", $user,
12 > my @cmdline = ("bzr", "commit", "--quiet", "-m", $message, "--author", $user,
14 < my @cmdline = ("bzr", "add", "$config{srcdir}/$file");
16 > my @cmdline = ("bzr", "add", "--quiet", "$config{srcdir}/$file");
18 > eval q{use CGI 'escapeHTML'};
25 > [[done]], although I left off the escapeHTML thing which seems to be in
26 > your patch by accident.
28 > (Please use diff -u BTW..) --[[Joey]]