1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/lib/TWiki/Configure/Checkers/RCS/SearchAlgorithm.pm Sat Jan 26 15:50:53 2008 +0100
1.3 @@ -0,0 +1,41 @@
1.4 +#
1.5 +# TWiki Enterprise Collaboration Platform, http://TWiki.org/
1.6 +#
1.7 +# Copyright (C) 2000-2006 TWiki Contributors.
1.8 +#
1.9 +# This program is free software; you can redistribute it and/or
1.10 +# modify it under the terms of the GNU General Public License
1.11 +# as published by the Free Software Foundation; either version 2
1.12 +# of the License, or (at your option) any later version. For
1.13 +# more details read LICENSE in the root of this distribution.
1.14 +#
1.15 +# This program is distributed in the hope that it will be useful,
1.16 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
1.17 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1.18 +#
1.19 +# As per the GPL, removal of this notice is prohibited.
1.20 +package TWiki::Configure::Checkers::RCS::SearchAlgorithm;
1.21 +use base 'TWiki::Configure::Checker';
1.22 +
1.23 +use strict;
1.24 +
1.25 +use TWiki::Configure::Checker;
1.26 +
1.27 +sub check {
1.28 + my $this = shift;
1.29 +
1.30 + my $mess = '';
1.31 + if( $TWiki::cfg{RCS}{SearchAlgorithm} =~ /Native$/) {
1.32 + eval 'use NativeTWikiSearch';
1.33 + if ($@) {
1.34 + $mess .= $this->ERROR(<<EOF);
1.35 +Sorry, I could not find the required components for Native search. The
1.36 +error was: $@
1.37 +EOF
1.38 + }
1.39 + }
1.40 +
1.41 + return $mess;
1.42 +};
1.43 +
1.44 +1;