Commit 91ad0813 authored by Matt Selsky's avatar Matt Selsky Committed by Frédéric Buclin

Bug 816870: All extensions must require Perl 5.10.1 to pass tests

r/a=LpSolit
parent 4663186f
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::BmpConvert;
use 5.10.1;
use strict;
use constant NAME => 'BmpConvert';
use constant REQUIRED_MODULES => [
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::BmpConvert;
use 5.10.1;
use strict;
use parent qw(Bugzilla::Extension);
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::Example;
use 5.10.1;
use strict;
use constant NAME => 'Example';
use constant REQUIRED_MODULES => [
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::Example;
use 5.10.1;
use strict;
use parent qw(Bugzilla::Extension);
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::Example::Auth::Login;
use 5.10.1;
use strict;
use parent qw(Bugzilla::Auth::Login);
use constant user_can_create_account => 0;
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::Example::Auth::Verify;
use 5.10.1;
use strict;
use parent qw(Bugzilla::Auth::Verify);
use Bugzilla::Constants;
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::Example::Config;
use 5.10.1;
use strict;
use warnings;
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::Example::Util;
use 5.10.1;
use strict;
use warnings;
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::Example::WebService;
use 5.10.1;
use strict;
use warnings;
use parent qw(Bugzilla::WebService);
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::MoreBugUrl;
use 5.10.1;
use strict;
use constant NAME => 'MoreBugUrl';
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::MoreBugUrl;
use 5.10.1;
use strict;
use parent qw(Bugzilla::Extension);
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::MoreBugUrl::GetSatisfaction;
use 5.10.1;
use strict;
use parent qw(Bugzilla::BugUrl);
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::MoreBugUrl::PHP;
use 5.10.1;
use strict;
use parent qw(Bugzilla::BugUrl);
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::MoreBugUrl::RT;
use 5.10.1;
use strict;
use parent qw(Bugzilla::BugUrl);
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::MoreBugUrl::ReviewBoard;
use 5.10.1;
use strict;
use parent qw(Bugzilla::BugUrl);
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::MoreBugUrl::Rietveld;
use 5.10.1;
use strict;
use parent qw(Bugzilla::BugUrl);
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::OldBugMove;
use 5.10.1;
use strict;
use constant NAME => 'OldBugMove';
__PACKAGE__->NAME;
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::OldBugMove;
use 5.10.1;
use strict;
use parent qw(Bugzilla::Extension);
use Bugzilla::Constants;
......
......@@ -7,6 +7,7 @@
package Bugzilla::Extension::OldBugMove::Params;
use 5.10.1;
use strict;
use Bugzilla::Config::Common;
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::Voting;
use 5.10.1;
use strict;
use constant NAME => 'Voting';
......
......@@ -6,6 +6,8 @@
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::Voting;
use 5.10.1;
use strict;
use parent qw(Bugzilla::Extension);
......
......@@ -13,6 +13,8 @@
[% PROCESS extensions/license.txt.tmpl %]
package B[% %]ugzilla::Extension::[% name %];
use 5.10.1;
use strict;
use constant NAME => '[% name %]';
......
......@@ -13,6 +13,8 @@
[% PROCESS extensions/license.txt.tmpl %]
package B[% %]ugzilla::Extension::[% name %];
use 5.10.1;
use strict;
use parent qw(B[% %]ugzilla::Extension);
......
......@@ -13,6 +13,8 @@
[% PROCESS extensions/license.txt.tmpl %]
package B[% %]ugzilla::Extension::[% name %]::Util;
use 5.10.1;
use strict;
use parent qw(Exporter);
our @EXPORT = qw(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment