-
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.
Item12952: fixes for extension installation and handling of perl values
- Loading branch information
crawford
committed
Oct 16, 2014
1 parent
a5ddb65
commit e80d705
Showing
48 changed files
with
832 additions
and
546 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,57 @@ | ||
# See bottom of file for license and copyright information | ||
package Foswiki::Configure::Wizards::Test; | ||
|
||
=begin TML | ||
---++ package Foswiki::Configure::Wizards::Test | ||
Wizard to test configure parameter passing | ||
=cut | ||
|
||
use strict; | ||
use warnings; | ||
|
||
use Assert; | ||
|
||
use Foswiki::Configure::Wizard (); | ||
our @ISA = ('Foswiki::Configure::Wizard'); | ||
|
||
sub test1 { | ||
my ( $this, $reporter ) = @_; | ||
|
||
die "No username" unless $this->param('cfgusername'); | ||
die "No password" unless $this->param('cfgpassword'); | ||
$reporter->ERROR("This is an error"); | ||
$reporter->WARN("This is a warning"); | ||
$reporter->NOTE("This is a note"); | ||
$Foswiki::cfg{Plugins}{ConfigurePlugin}{Test}{STRING} = 'ROPE'; | ||
$reporter->CHANGED('{Plugins}{ConfigurePlugin}{Test}{STRING}'); | ||
return undef; | ||
} | ||
|
||
sub format { | ||
my ( $this, $reporter ) = @_; | ||
$reporter->CHANGED('{Plugins}{ConfigurePlugin}{Test}{PERL}'); | ||
return undef; | ||
} | ||
|
||
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. |
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
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
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
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
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
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
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
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
Oops, something went wrong.