aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/darcs.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-04-04 18:48:33 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-04-04 18:48:33 -0400
commitf8fa69326a8963b179f2c0d6dd52d2f737634541 (patch)
treeeb01fc0e403d14e4f18a51cee4943da89cdbac4c /IkiWiki/Plugin/darcs.pm
parent97906c72ef0bf2f754a7683ac91d2cb0a44c9c9c (diff)
downloadikiwiki-f8fa69326a8963b179f2c0d6dd52d2f737634541.tar
ikiwiki-f8fa69326a8963b179f2c0d6dd52d2f737634541.tar.gz
remove debugging
Diffstat (limited to 'IkiWiki/Plugin/darcs.pm')
-rw-r--r--IkiWiki/Plugin/darcs.pm7
1 files changed, 0 insertions, 7 deletions
diff --git a/IkiWiki/Plugin/darcs.pm b/IkiWiki/Plugin/darcs.pm
index 1ed9f0044..de9ef4f03 100644
--- a/IkiWiki/Plugin/darcs.pm
+++ b/IkiWiki/Plugin/darcs.pm
@@ -298,8 +298,6 @@ sub rcs_recentchanges ($) {
my $repodir=$config{srcdir};
- debug("darcs recent changes: $num");
-
my $child = open(LOG, "-|");
if (! $child) {
$ENV{"DARCS_DONT_ESCAPE_ANYTHING"}=1;
@@ -315,7 +313,6 @@ sub rcs_recentchanges ($) {
my $log = XMLin($data, ForceArray => 1);
- debug("parsing recent changes...");
foreach my $patch (@{$log->{patch}}) {
my $date=$patch->{local_date};
my $hash=$patch->{hash};
@@ -339,16 +336,12 @@ sub rcs_recentchanges ($) {
$d =~ s/\[\[file\]\]/$f/go;
$d =~ s/\[\[hash\]\]/$hash/go;
- debug("file: $f");
- debug("diffurl: $d");
push @pg, {
page => pagename($f),
diffurl => $d,
};
}
next unless (scalar @pg > 0);
- debug("recent change: " . $patch->{name}[0] . " ("
- . scalar @pg . " changes)");
my @message;
push @message, { line => $_ } foreach (@{$patch->{name}});