From 3e028490f6018f182ce8b5dcc0eb7e501858c6d1 Mon Sep 17 00:00:00 2001 From: Martin Trigaux Date: Tue, 17 Dec 2013 11:48:13 +0100 Subject: [PATCH] [IMP] gamification: licency stuff bzr revid: mat@openerp.com-20131217104813-7nh422l1d85s6y51 --- addons/gamification/__init__.py | 21 +++++++++++++++++++++ addons/gamification/badge.py | 2 +- addons/gamification/goal.py | 2 +- addons/gamification/goal_type_data.py | 2 +- addons/gamification/plan.py | 2 +- addons/gamification/res_users.py | 2 +- addons/gamification_sale_crm/__init__.py | 20 ++++++++++++++++++++ addons/hr_gamification/__init__.py | 21 +++++++++++++++++++++ addons/hr_gamification/gamification.py | 2 +- 9 files changed, 68 insertions(+), 6 deletions(-) diff --git a/addons/gamification/__init__.py b/addons/gamification/__init__.py index 3c4211df081..843121ee65b 100644 --- a/addons/gamification/__init__.py +++ b/addons/gamification/__init__.py @@ -1,3 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 OpenERP SA (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + import goal import goal_type_data import plan diff --git a/addons/gamification/badge.py b/addons/gamification/badge.py index b562c6f7a7d..8e09a2a397b 100644 --- a/addons/gamification/badge.py +++ b/addons/gamification/badge.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2010-Today OpenERP SA () +# Copyright (C) 2013 OpenERP SA () # # 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 diff --git a/addons/gamification/goal.py b/addons/gamification/goal.py index 4c61f658e42..11a3b2517ff 100644 --- a/addons/gamification/goal.py +++ b/addons/gamification/goal.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2010-Today OpenERP SA () +# Copyright (C) 2013 OpenERP SA () # # 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 diff --git a/addons/gamification/goal_type_data.py b/addons/gamification/goal_type_data.py index ccde88e53f0..3fef79f9a79 100644 --- a/addons/gamification/goal_type_data.py +++ b/addons/gamification/goal_type_data.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2010-Today OpenERP SA () +# Copyright (C) 2013 OpenERP SA () # # 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 diff --git a/addons/gamification/plan.py b/addons/gamification/plan.py index ca2934231bc..80631518b3d 100644 --- a/addons/gamification/plan.py +++ b/addons/gamification/plan.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2010-Today OpenERP SA () +# Copyright (C) 2013 OpenERP SA () # # 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 diff --git a/addons/gamification/res_users.py b/addons/gamification/res_users.py index 305f6fddb05..3450dc1492c 100644 --- a/addons/gamification/res_users.py +++ b/addons/gamification/res_users.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2010-Today OpenERP SA () +# Copyright (C) 2013 OpenERP SA () # # 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 diff --git a/addons/gamification_sale_crm/__init__.py b/addons/gamification_sale_crm/__init__.py index e69de29bb2d..e14c014a1ef 100644 --- a/addons/gamification_sale_crm/__init__.py +++ b/addons/gamification_sale_crm/__init__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 OpenERP SA (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## diff --git a/addons/hr_gamification/__init__.py b/addons/hr_gamification/__init__.py index cef4a8c371c..51cf01dfa09 100644 --- a/addons/hr_gamification/__init__.py +++ b/addons/hr_gamification/__init__.py @@ -1 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 OpenERP SA (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + import gamification diff --git a/addons/hr_gamification/gamification.py b/addons/hr_gamification/gamification.py index feed68a1cf4..73ae0b6cfe3 100644 --- a/addons/hr_gamification/gamification.py +++ b/addons/hr_gamification/gamification.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2010-Today OpenERP SA () +# Copyright (C) 2013 OpenERP SA () # # 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