[Bps-public-commit] App-Changeloggr branch, master, updated. 5e62f3dad8e21ae20503079012f86b744906d33f
Kevin Falcone
falcone at bestpractical.com
Mon May 18 10:31:25 EDT 2009
The branch, master has been updated
via 5e62f3dad8e21ae20503079012f86b744906d33f (commit)
from 6aadc88eb5e4e3d092be534f98b01749e7e59440 (commit)
Summary of changes:
lib/App/Changeloggr/InputFormat/SubversionXML.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
- Log -----------------------------------------------------------------
commit 5e62f3dad8e21ae20503079012f86b744906d33f
Author: Kevin Falcone <kevin at jibsheet.com>
Date: Mon May 18 10:30:36 2009 -0400
stop adding a leading r to identifiers
Normal svn log import doesn't add the r, don't
do it for XML
diff --git a/lib/App/Changeloggr/InputFormat/SubversionXML.pm b/lib/App/Changeloggr/InputFormat/SubversionXML.pm
index 7f458f1..7551bf8 100644
--- a/lib/App/Changeloggr/InputFormat/SubversionXML.pm
+++ b/lib/App/Changeloggr/InputFormat/SubversionXML.pm
@@ -23,7 +23,7 @@ sub next_match {
my $data = XMLin( $self->{text}, ForceArray => ["logentry"] );
$self->{log_entries} = [map {
{
- identifier => "r" . $_->{revision},
+ identifier => $_->{revision},
author => $_->{author},
date => DATE_PARSER->parse_datetime( $_->{date} ),
message => $_->{msg},
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list