Skip to content

Commit a7b3791

Browse files
committed
Update to MPL2.0
1 parent 9eae250 commit a7b3791

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+246
-574
lines changed

Config.pm

+5-17
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
11
# -*- Mode: perl; indent-tabs-mode: nil -*-
22
#
3-
# The contents of this file are subject to the Mozilla Public
4-
# License Version 1.1 (the "License"); you may not use this file
5-
# except in compliance with the License. You may obtain a copy of
6-
# the License at http://www.mozilla.org/MPL/
3+
# This Source Code Form is subject to the terms of the Mozilla Public
4+
# License, v. 2.0. If a copy of the MPL was not distributed with this
5+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
76
#
8-
# Software distributed under the License is distributed on an "AS
9-
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10-
# implied. See the License for the specific language governing
11-
# rights and limitations under the License.
12-
#
13-
# The Original Code is the AgileTools Bugzilla Extension.
14-
#
15-
# The Initial Developer of the Original Code is Pami Ketolainen
16-
# Portions created by the Initial Developer are Copyright (C) 2012 the
17-
# Initial Developer. All Rights Reserved.
18-
#
19-
# Contributor(s):
20-
# Pami Ketolainen <[email protected]>
7+
# Copyright (C) 2012 Jolla Ltd.
8+
# Contact: Pami Ketolainen <[email protected]>
219

2210
package Bugzilla::Extension::AgileTools;
2311
use strict;

Extension.pm

+5-21
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
11
# -*- Mode: perl; indent-tabs-mode: nil -*-
22
#
3-
# The contents of this file are subject to the Mozilla Public
4-
# License Version 1.1 (the "License"); you may not use this file
5-
# except in compliance with the License. You may obtain a copy of
6-
# the License at http://www.mozilla.org/MPL/
3+
# This Source Code Form is subject to the terms of the Mozilla Public
4+
# License, v. 2.0. If a copy of the MPL was not distributed with this
5+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
76
#
8-
# Software distributed under the License is distributed on an "AS
9-
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10-
# implied. See the License for the specific language governing
11-
# rights and limitations under the License.
12-
#
13-
# The Original Code is the AgileTools Bugzilla Extension.
14-
#
15-
# The Initial Developer of the Original Code is Pami Ketolainen
16-
# Portions created by the Initial Developer are Copyright (C) 2012 the
17-
# Initial Developer. All Rights Reserved.
18-
#
19-
# Contributor(s):
20-
# Pami Ketolainen <[email protected]>
7+
# Copyright (C) 2012 Jolla Ltd.
8+
# Contact: Pami Ketolainen <[email protected]>
219

2210
package Bugzilla::Extension::AgileTools;
2311
use strict;
@@ -37,8 +25,6 @@ use Bugzilla::Extension::AgileTools::Burn;
3725

3826
use JSON;
3927

40-
use Data::Dumper;
41-
4228
our $VERSION = '0.02';
4329

4430
my %template_handlers;
@@ -904,8 +890,6 @@ sub sanitycheck_check {
904890

905891
sub webservice {
906892
my ($self, $args) = @_;
907-
$args->{dispatch}->{'Agile'} =
908-
"Bugzilla::Extension::AgileTools::WebService";
909893
$args->{dispatch}->{'Agile.Team'} =
910894
"Bugzilla::Extension::AgileTools::WebService::Team";
911895
$args->{dispatch}->{'Agile.Sprint'} =

lib/Burn.pm

+5-17
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
11
# -*- Mode: perl; indent-tabs-mode: nil -*-
22
#
3-
# The contents of this file are subject to the Mozilla Public
4-
# License Version 1.1 (the "License"); you may not use this file
5-
# except in compliance with the License. You may obtain a copy of
6-
# the License at http://www.mozilla.org/MPL/
3+
# This Source Code Form is subject to the terms of the Mozilla Public
4+
# License, v. 2.0. If a copy of the MPL was not distributed with this
5+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
76
#
8-
# Software distributed under the License is distributed on an "AS
9-
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10-
# implied. See the License for the specific language governing
11-
# rights and limitations under the License.
12-
#
13-
# The Original Code is the AgileTools Bugzilla Extension.
14-
#
15-
# The Initial Developer of the Original Code is Pami Ketolainen
16-
# Portions created by the Initial Developer are Copyright (C) 2012 the
17-
# Initial Developer. All Rights Reserved.
18-
#
19-
# Contributor(s):
20-
# Pami Ketolainen <[email protected]>
7+
# Copyright (C) 2012 Jolla Ltd.
8+
# Contact: Pami Ketolainen <[email protected]>
219

2210
=head1 NAME
2311

lib/Constants.pm

+5-17
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
11
# -*- Mode: perl; indent-tabs-mode: nil -*-
22
#
3-
# The contents of this file are subject to the Mozilla Public
4-
# License Version 1.1 (the "License"); you may not use this file
5-
# except in compliance with the License. You may obtain a copy of
6-
# the License at http://www.mozilla.org/MPL/
3+
# This Source Code Form is subject to the terms of the Mozilla Public
4+
# License, v. 2.0. If a copy of the MPL was not distributed with this
5+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
76
#
8-
# Software distributed under the License is distributed on an "AS
9-
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10-
# implied. See the License for the specific language governing
11-
# rights and limitations under the License.
12-
#
13-
# The Original Code is the AgileTools Bugzilla Extension.
14-
#
15-
# The Initial Developer of the Original Code is Pami Ketolainen
16-
# Portions created by the Initial Developer are Copyright (C) 2012 the
17-
# Initial Developer. All Rights Reserved.
18-
#
19-
# Contributor(s):
20-
# Pami Ketolainen <[email protected]>
7+
# Copyright (C) 2012 Jolla Ltd.
8+
# Contact: Pami Ketolainen <[email protected]>
219

2210
=head1 NAME
2311

lib/Params.pm

+5-17
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
11
# -*- Mode: perl; indent-tabs-mode: nil -*-
22
#
3-
# The contents of this file are subject to the Mozilla Public
4-
# License Version 1.1 (the "License"); you may not use this file
5-
# except in compliance with the License. You may obtain a copy of
6-
# the License at http://www.mozilla.org/MPL/
3+
# This Source Code Form is subject to the terms of the Mozilla Public
4+
# License, v. 2.0. If a copy of the MPL was not distributed with this
5+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
76
#
8-
# Software distributed under the License is distributed on an "AS
9-
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10-
# implied. See the License for the specific language governing
11-
# rights and limitations under the License.
12-
#
13-
# The Original Code is the AgileTools Bugzilla Extension.
14-
#
15-
# The Initial Developer of the Original Code is Pami Ketolainen
16-
# Portions created by the Initial Developer are Copyright (C) 2012 the
17-
# Initial Developer. All Rights Reserved.
18-
#
19-
# Contributor(s):
20-
# Pami Ketolainen <[email protected]>
7+
# Copyright (C) 2012 Jolla Ltd.
8+
# Contact: Pami Ketolainen <[email protected]>
219

2210
package Bugzilla::Extension::AgileTools::Params;
2311

lib/Pool.pm

+5-17
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
11
# -*- Mode: perl; indent-tabs-mode: nil -*-
22
#
3-
# The contents of this file are subject to the Mozilla Public
4-
# License Version 1.1 (the "License"); you may not use this file
5-
# except in compliance with the License. You may obtain a copy of
6-
# the License at http://www.mozilla.org/MPL/
3+
# This Source Code Form is subject to the terms of the Mozilla Public
4+
# License, v. 2.0. If a copy of the MPL was not distributed with this
5+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
76
#
8-
# Software distributed under the License is distributed on an "AS
9-
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10-
# implied. See the License for the specific language governing
11-
# rights and limitations under the License.
12-
#
13-
# The Original Code is the AgileTools Bugzilla Extension.
14-
#
15-
# The Initial Developer of the Original Code is Pami Ketolainen
16-
# Portions created by the Initial Developer are Copyright (C) 2012 the
17-
# Initial Developer. All Rights Reserved.
18-
#
19-
# Contributor(s):
20-
# Pami Ketolainen <[email protected]>
7+
# Copyright (C) 2012 Jolla Ltd.
8+
# Contact: Pami Ketolainen <[email protected]>
219

2210
=head1 NAME
2311

lib/Role.pm

+5-17
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
11
# -*- Mode: perl; indent-tabs-mode: nil -*-
22
#
3-
# The contents of this file are subject to the Mozilla Public
4-
# License Version 1.1 (the "License"); you may not use this file
5-
# except in compliance with the License. You may obtain a copy of
6-
# the License at http://www.mozilla.org/MPL/
3+
# This Source Code Form is subject to the terms of the Mozilla Public
4+
# License, v. 2.0. If a copy of the MPL was not distributed with this
5+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
76
#
8-
# Software distributed under the License is distributed on an "AS
9-
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10-
# implied. See the License for the specific language governing
11-
# rights and limitations under the License.
12-
#
13-
# The Original Code is the AgileTools Bugzilla Extension.
14-
#
15-
# The Initial Developer of the Original Code is Pami Ketolainen
16-
# Portions created by the Initial Developer are Copyright (C) 2012 the
17-
# Initial Developer. All Rights Reserved.
18-
#
19-
# Contributor(s):
20-
# Pami Ketolainen <[email protected]>
7+
# Copyright (C) 2012 Jolla Ltd.
8+
# Contact: Pami Ketolainen <[email protected]>
219

2210
=head1 NAME
2311

lib/Sprint.pm

+5-17
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
11
# -*- Mode: perl; indent-tabs-mode: nil -*-
22
#
3-
# The contents of this file are subject to the Mozilla Public
4-
# License Version 1.1 (the "License"); you may not use this file
5-
# except in compliance with the License. You may obtain a copy of
6-
# the License at http://www.mozilla.org/MPL/
3+
# This Source Code Form is subject to the terms of the Mozilla Public
4+
# License, v. 2.0. If a copy of the MPL was not distributed with this
5+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
76
#
8-
# Software distributed under the License is distributed on an "AS
9-
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10-
# implied. See the License for the specific language governing
11-
# rights and limitations under the License.
12-
#
13-
# The Original Code is the AgileTools Bugzilla Extension.
14-
#
15-
# The Initial Developer of the Original Code is Pami Ketolainen
16-
# Portions created by the Initial Developer are Copyright (C) 2012 the
17-
# Initial Developer. All Rights Reserved.
18-
#
19-
# Contributor(s):
20-
# Pami Ketolainen <[email protected]>
7+
# Copyright (C) 2012 Jolla Ltd.
8+
# Contact: Pami Ketolainen <[email protected]>
219

2210
=head1 NAME
2311

lib/Team.pm

+5-17
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
11
# -*- Mode: perl; indent-tabs-mode: nil -*-
22
#
3-
# The contents of this file are subject to the Mozilla Public
4-
# License Version 1.1 (the "License"); you may not use this file
5-
# except in compliance with the License. You may obtain a copy of
6-
# the License at http://www.mozilla.org/MPL/
3+
# This Source Code Form is subject to the terms of the Mozilla Public
4+
# License, v. 2.0. If a copy of the MPL was not distributed with this
5+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
76
#
8-
# Software distributed under the License is distributed on an "AS
9-
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10-
# implied. See the License for the specific language governing
11-
# rights and limitations under the License.
12-
#
13-
# The Original Code is the AgileTools Bugzilla Extension.
14-
#
15-
# The Initial Developer of the Original Code is Pami Ketolainen
16-
# Portions created by the Initial Developer are Copyright (C) 2012 the
17-
# Initial Developer. All Rights Reserved.
18-
#
19-
# Contributor(s):
20-
# Pami Ketolainen <[email protected]>
7+
# Copyright (C) 2012 Jolla Ltd.
8+
# Contact: Pami Ketolainen <[email protected]>
219

2210
=head1 NAME
2311

lib/Util.pm

+5-17
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
11
# -*- Mode: perl; indent-tabs-mode: nil -*-
22
#
3-
# The contents of this file are subject to the Mozilla Public
4-
# License Version 1.1 (the "License"); you may not use this file
5-
# except in compliance with the License. You may obtain a copy of
6-
# the License at http://www.mozilla.org/MPL/
3+
# This Source Code Form is subject to the terms of the Mozilla Public
4+
# License, v. 2.0. If a copy of the MPL was not distributed with this
5+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
76
#
8-
# Software distributed under the License is distributed on an "AS
9-
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10-
# implied. See the License for the specific language governing
11-
# rights and limitations under the License.
12-
#
13-
# The Original Code is the AgileTools Bugzilla Extension.
14-
#
15-
# The Initial Developer of the Original Code is Pami Ketolainen
16-
# Portions created by the Initial Developer are Copyright (C) 2012 the
17-
# Initial Developer. All Rights Reserved.
18-
#
19-
# Contributor(s):
20-
# Pami Ketolainen <[email protected]>
7+
# Copyright (C) 2012 Jolla Ltd.
8+
# Contact: Pami Ketolainen <[email protected]>
219

2210
=head1 NAME
2311

lib/WebService.pm

-51
This file was deleted.

lib/WebService/Pool.pm

+6-18
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,19 @@
11
# -*- Mode: perl; indent-tabs-mode: nil -*-
22
#
3-
# The contents of this file are subject to the Mozilla Public
4-
# License Version 1.1 (the "License"); you may not use this file
5-
# except in compliance with the License. You may obtain a copy of
6-
# the License at http://www.mozilla.org/MPL/
3+
# This Source Code Form is subject to the terms of the Mozilla Public
4+
# License, v. 2.0. If a copy of the MPL was not distributed with this
5+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
76
#
8-
# Software distributed under the License is distributed on an "AS
9-
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10-
# implied. See the License for the specific language governing
11-
# rights and limitations under the License.
12-
#
13-
# The Original Code is the AgileTools Bugzilla Extension.
14-
#
15-
# The Initial Developer of the Original Code is Pami Ketolainen
16-
# Portions created by the Initial Developer are Copyright (C) 2012 the
17-
# Initial Developer. All Rights Reserved.
18-
#
19-
# Contributor(s):
20-
# Pami Ketolainen <[email protected]>
7+
# Copyright (C) 2012 Jolla Ltd.
8+
# Contact: Pami Ketolainen <[email protected]>
219

2210
=head1 NAME
2311
2412
Bugzilla::Extension::AgileTools::WebService::Pool
2513
2614
=head1 DESCRIPTION
2715
28-
Web service methods available under namespase 'Agile.Pool'.
16+
Web service methods available under namespace 'Agile.Pool'.
2917
3018
=cut
3119

0 commit comments

Comments
 (0)