2013-08-16 00:29:32 +02:00
|
|
|
# Copyright (C) 2006-2013 Alex Schroeder <alex@gnu.org>
|
|
|
|
|
|
|
|
|
|
# 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 3 of the License, or (at your option) any later
|
|
|
|
|
# version.
|
2006-09-07 20:07:23 +00:00
|
|
|
#
|
2013-08-16 00:29:32 +02:00
|
|
|
# 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. See the GNU General Public License for more details.
|
2006-09-07 20:07:23 +00:00
|
|
|
#
|
2013-08-16 00:29:32 +02:00
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
|
# this program. If not, see <http://www.gnu.org/licenses/>.
|
2006-09-07 20:07:23 +00:00
|
|
|
|
2014-08-21 22:23:23 +02:00
|
|
|
AddModuleDescription('delete-all.pl');
|
2006-09-07 20:37:29 +00:00
|
|
|
|
|
|
|
|
use vars qw($DeletedAge);
|
|
|
|
|
|
|
|
|
|
$DeleteAge = 172800; # 2*24*60*60
|
2006-09-07 20:07:23 +00:00
|
|
|
|
|
|
|
|
*OldDelPageDeletable = *PageDeletable;
|
|
|
|
|
*PageDeletable = *NewDelPageDeletable;
|
|
|
|
|
|
2006-09-07 20:08:59 +00:00
|
|
|
# All pages will be deleted after two days of inactivity!
|
2006-09-07 20:07:23 +00:00
|
|
|
sub NewDelPageDeletable {
|
2013-08-16 00:29:32 +02:00
|
|
|
return 1 if $Now - $Page{ts} > $DeleteAge
|
|
|
|
|
and not $LockOnCreation{$OpenPageName};
|
2006-09-07 20:07:23 +00:00
|
|
|
return OldDelPageDeletable(@_);
|
|
|
|
|
}
|