Skip to content

Commit

Permalink
Item11983: added a tool to fix pending checkins
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@16341 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
MichaelDaum authored and MichaelDaum committed Jan 7, 2013
1 parent 77fd4b2 commit b577761
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
1 change: 1 addition & 0 deletions core/lib/Foswiki/Contrib/core/MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -1180,6 +1180,7 @@ tools/extender.pl 0444
tools/extension_installer 0555
tools/geturl.pl 0555
tools/rewriteshebang.pl 0555
tools/save-pending-checkins 0555
tools/tick_foswiki.pl 0555
working/README 0444
working/logs/README 0444
Expand Down
57 changes: 57 additions & 0 deletions core/tools/save-pending-checkins
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
#! /usr/bin/perl -w
# See bottom of file for license and copyright information
#
use strict;
use warnings;

BEGIN {
if ( -e './setlib.cfg' ) {
unshift @INC, '.';
}
elsif ( -e '../bin/setlib.cfg' ) {
unshift @INC, '../bin';
} # otherwise rely on the user-set path
require 'setlib.cfg';
}

use Foswiki ();
use Foswiki::Func ();

my $session = new Foswiki('admin');

foreach my $web ( Foswiki::Func::getListOfWebs() ) {
print STDERR "checking web $web\n";
foreach my $topic ( Foswiki::Func::getTopicList($web) ) {

#print STDERR "checking $web.$topic\n";
#my ($meta, $text) = Foswiki::Func::readTopic($web, $topic);
my $handler = $session->{store}->getHandler( $web, $topic );
if ( $handler->noCheckinPending() ) {

#print STDERR "$web, $topic revision history in sync\n";
}
else {
print STDERR "WARNING: $web.$topic has got a checkin pending\n";
$handler->savePendingCheckin();
}
}
}

__END__
Foswiki - The Free and Open Source Wiki, http://foswiki.org/
Copyright (C) 2009-2013 Foswiki Contributors. Foswiki Contributors
are listed in the AUTHORS file in the root of this distribution.
NOTE: Please extend that file, not this notice.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version. For
more details read LICENSE in the root of this distribution.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
As per the GPL, removal of this notice is prohibited.

0 comments on commit b577761

Please sign in to comment.