Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
91ad0813
Commit
91ad0813
authored
Jan 01, 2013
by
Matt Selsky
Committed by
Frédéric Buclin
Jan 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 816870: All extensions must require Perl 5.10.1 to pass tests
r/a=LpSolit
parent
4663186f
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
47 additions
and
0 deletions
+47
-0
Config.pm
extensions/BmpConvert/Config.pm
+2
-0
Extension.pm
extensions/BmpConvert/Extension.pm
+2
-0
Config.pm
extensions/Example/Config.pm
+2
-0
Extension.pm
extensions/Example/Extension.pm
+2
-0
Login.pm
extensions/Example/lib/Auth/Login.pm
+2
-0
Verify.pm
extensions/Example/lib/Auth/Verify.pm
+2
-0
Config.pm
extensions/Example/lib/Config.pm
+2
-0
Util.pm
extensions/Example/lib/Util.pm
+2
-0
WebService.pm
extensions/Example/lib/WebService.pm
+2
-0
Config.pm
extensions/MoreBugUrl/Config.pm
+2
-0
Extension.pm
extensions/MoreBugUrl/Extension.pm
+2
-0
GetSatisfaction.pm
extensions/MoreBugUrl/lib/GetSatisfaction.pm
+2
-0
PHP.pm
extensions/MoreBugUrl/lib/PHP.pm
+2
-0
RT.pm
extensions/MoreBugUrl/lib/RT.pm
+2
-0
ReviewBoard.pm
extensions/MoreBugUrl/lib/ReviewBoard.pm
+2
-0
Rietveld.pm
extensions/MoreBugUrl/lib/Rietveld.pm
+2
-0
Config.pm
extensions/OldBugMove/Config.pm
+2
-0
Extension.pm
extensions/OldBugMove/Extension.pm
+2
-0
Params.pm
extensions/OldBugMove/lib/Params.pm
+1
-0
Config.pm
extensions/Voting/Config.pm
+2
-0
Extension.pm
extensions/Voting/Extension.pm
+2
-0
config.pm.tmpl
template/en/default/extensions/config.pm.tmpl
+2
-0
extension.pm.tmpl
template/en/default/extensions/extension.pm.tmpl
+2
-0
util.pm.tmpl
template/en/default/extensions/util.pm.tmpl
+2
-0
No files found.
extensions/BmpConvert/Config.pm
View file @
91ad0813
...
...
@@ -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
=>
[
...
...
extensions/BmpConvert/Extension.pm
View file @
91ad0813
...
...
@@ -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)
;
...
...
extensions/Example/Config.pm
View file @
91ad0813
...
...
@@ -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
=>
[
...
...
extensions/Example/Extension.pm
View file @
91ad0813
...
...
@@ -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)
;
...
...
extensions/Example/lib/Auth/Login.pm
View file @
91ad0813
...
...
@@ -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
;
...
...
extensions/Example/lib/Auth/Verify.pm
View file @
91ad0813
...
...
@@ -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
;
...
...
extensions/Example/lib/Config.pm
View file @
91ad0813
...
...
@@ -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
;
...
...
extensions/Example/lib/Util.pm
View file @
91ad0813
...
...
@@ -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
;
...
...
extensions/Example/lib/WebService.pm
View file @
91ad0813
...
...
@@ -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)
;
...
...
extensions/MoreBugUrl/Config.pm
View file @
91ad0813
...
...
@@ -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'
;
...
...
extensions/MoreBugUrl/Extension.pm
View file @
91ad0813
...
...
@@ -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)
;
...
...
extensions/MoreBugUrl/lib/GetSatisfaction.pm
View file @
91ad0813
...
...
@@ -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)
;
...
...
extensions/MoreBugUrl/lib/PHP.pm
View file @
91ad0813
...
...
@@ -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)
;
...
...
extensions/MoreBugUrl/lib/RT.pm
View file @
91ad0813
...
...
@@ -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)
;
...
...
extensions/MoreBugUrl/lib/ReviewBoard.pm
View file @
91ad0813
...
...
@@ -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)
;
...
...
extensions/MoreBugUrl/lib/Rietveld.pm
View file @
91ad0813
...
...
@@ -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)
;
...
...
extensions/OldBugMove/Config.pm
View file @
91ad0813
...
...
@@ -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
;
extensions/OldBugMove/Extension.pm
View file @
91ad0813
...
...
@@ -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
;
...
...
extensions/OldBugMove/lib/Params.pm
View file @
91ad0813
...
...
@@ -7,6 +7,7 @@
package
Bugzilla::Extension::OldBugMove::
Params
;
use
5.10.1
;
use
strict
;
use
Bugzilla::Config::
Common
;
...
...
extensions/Voting/Config.pm
View file @
91ad0813
...
...
@@ -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'
;
...
...
extensions/Voting/Extension.pm
View file @
91ad0813
...
...
@@ -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)
;
...
...
template/en/default/extensions/config.pm.tmpl
View file @
91ad0813
...
...
@@ -13,6 +13,8 @@
[%
PROCESS
extensions
/
license
.
txt
.
tmpl
%]
package
B
[%
%]
ugzilla
::
Extension
::[%
name
%];
use
5.10.1
;
use
strict
;
use
constant
NAME
=>
'[% name %]'
;
...
...
template/en/default/extensions/extension.pm.tmpl
View file @
91ad0813
...
...
@@ -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
);
...
...
template/en/default/extensions/util.pm.tmpl
View file @
91ad0813
...
...
@@ -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
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment