-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
crawford
committed
Aug 28, 2014
1 parent
75298b4
commit 6904c15
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# See bottom of file for license and copyright information | ||
package Foswiki::Configure::Checkers::AccessibleCFG; | ||
|
||
use strict; | ||
use warnings; | ||
|
||
use Foswiki::Configure::Checkers::PERL (); | ||
our @ISA = ('Foswiki::Configure::Checkers::PERL'); | ||
|
||
sub check_current_value { | ||
my ( $this, $reporter ) = @_; | ||
|
||
my $val = $this->getCfg(); | ||
unless ( ref($val) eq 'ARRAY' ) { | ||
$reporter->ERROR("Was expecting this to be an array"); | ||
return; | ||
} | ||
my $ec = 0; | ||
foreach my $v (@$val) { | ||
if ( ref($v) ne 'SCALAR' ) { | ||
$reporter->ERROR("Was expecting entry $ec to be a scalar"); | ||
} | ||
if ( $v !~ /^({\w+})+$/ ) { | ||
$reporter->ERROR("Was expecting '$v' to be a cfg key"); | ||
} | ||
$ec++; | ||
} | ||
} | ||
|
||
1; | ||
__END__ | ||
Foswiki - The Free and Open Source Wiki, http://foswiki.org/ | ||
Copyright (C) 2014 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. |