summaryrefslogtreecommitdiff
path: root/IkiWiki/Rcs
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-01-29 19:48:30 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-01-29 19:48:30 -0500
commit4284719464cf2ed24546e87e8b4dfb4f36d8be4c (patch)
tree75e4a9b5c3028394db83b355ac9d6294e89a6d8a /IkiWiki/Rcs
parent381ac0f667f428bc571e89beda6660a3c3a650ab (diff)
rename bazaar -> bzr after discussion with jelmer
Diffstat (limited to 'IkiWiki/Rcs')
-rw-r--r--IkiWiki/Rcs/bzr.pm (renamed from IkiWiki/Rcs/bazaar.pm)8
1 files changed, 4 insertions, 4 deletions
diff --git a/IkiWiki/Rcs/bazaar.pm b/IkiWiki/Rcs/bzr.pm
index 528767099..43822fe8f 100644
--- a/IkiWiki/Rcs/bazaar.pm
+++ b/IkiWiki/Rcs/bzr.pm
@@ -8,7 +8,7 @@ use open qw{:utf8 :std};
package IkiWiki;
-sub bazaar_log ($) { #{{{
+sub bzr_log ($) { #{{{
my $out = shift;
my @infos = ();
my $key = undef;
@@ -102,7 +102,7 @@ sub rcs_recentchanges ($) { #{{{
error($@) if $@;
my @ret;
- foreach my $info (bazaar_log($out)) {
+ foreach my $info (bzr_log($out)) {
my @pages = ();
my @message = ();
@@ -129,7 +129,7 @@ sub rcs_recentchanges ($) { #{{{
push @ret, {
rev => $info->{"revno"},
user => $user,
- committype => "bazaar",
+ committype => "bzr",
when => time - str2time($info->{"timestamp"}),
message => [@message],
pages => [@pages],
@@ -147,7 +147,7 @@ sub rcs_getctime ($) { #{{{
my @cmdline = ("bzr", "log", "--limit", '1', "$config{srcdir}/$file");
open (my $out, "@cmdline |");
- my @log = bazaar_log($out);
+ my @log = bzr_log($out);
if (length @log < 1) {
return 0;