diff --git a/super_calendar/README.rst b/super_calendar/README.rst index 8459e62ba45..1b30f7f2093 100644 --- a/super_calendar/README.rst +++ b/super_calendar/README.rst @@ -69,6 +69,7 @@ Contributors * Lorenzo Battistini * Alejandro Santana * Agathe Mollé +* Serpent Consulting Services Pvt. Ltd. Maintainer ---------- diff --git a/super_calendar/__init__.py b/super_calendar/__init__.py index 994b403d892..21266ed3d98 100644 --- a/super_calendar/__init__.py +++ b/super_calendar/__init__.py @@ -1,22 +1,14 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (C) 2012 Agile Business Group sagl () -# Copyright (C) 2012 Domsense srl () -# -# 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 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 . -# -############################################################################## +# Copyright +# (c) 2012-2015 Agile Business Group sagl () +# Lorenzo Battistini +# (c) 2012 Domsense srl () +# (c) 2015 Anubía, soluciones en la nube,SL (http://www.anubia.es) +# Alejandro Santana +# (c) 2015 Savoir-faire Linux ) +# Agathe Mollé +# (c) 2016 Serpent Consulting Services Pvt. Ltd. +# (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import models diff --git a/super_calendar/__openerp__.py b/super_calendar/__openerp__.py index f3aebb25e78..251a9b38a2e 100644 --- a/super_calendar/__openerp__.py +++ b/super_calendar/__openerp__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) All rights reserved: +# Copyright # (c) 2012-2015 Agile Business Group sagl () # Lorenzo Battistini # (c) 2012 Domsense srl () @@ -9,30 +7,20 @@ # Alejandro Santana # (c) 2015 Savoir-faire Linux ) # Agathe Mollé -# -# 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 http://www.gnu.org/licenses -# -############################################################################## +# (c) 2016 Serpent Consulting Services Pvt. Ltd. +# (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + { 'name': 'Super Calendar', - 'version': '8.0.0.2.0', + 'version': '9.0.1.0.0', 'category': 'Generic Modules/Others', 'summary': 'This module allows to create configurable calendars.', 'author': ('Agile Business Group, ' 'Alejandro Santana, ' 'Agathe Mollé, ' - 'Odoo Community Association (OCA)'), + 'Odoo Community Association (OCA), ' + 'Serpent Consulting Services Pvt. Ltd.'), 'website': 'http://www.agilebg.com', 'license': 'AGPL-3', 'depends': [ @@ -44,9 +32,10 @@ 'data/cron_data.xml', 'security/ir.model.access.csv', ], + 'installable': True, 'demo': [], 'test': [], - 'installable': False, +# 'installable': True, 'application': True, 'auto_install': False, } diff --git a/super_calendar/models/__init__.py b/super_calendar/models/__init__.py index 4dd32cedb38..f91eddcbd95 100644 --- a/super_calendar/models/__init__.py +++ b/super_calendar/models/__init__.py @@ -1,8 +1,14 @@ # -*- coding: utf-8 -*- -################################################################ -# License, author and contributors information in: # -# __openerp__.py file at the root folder of this module. # -################################################################ +# Copyright +# (c) 2012-2015 Agile Business Group sagl () +# (c) 2012 Domsense srl () +# (c) 2015 Anubía, soluciones en la nube,SL (http://www.anubia.es) +# Alejandro Santana +# (c) 2015 Savoir-faire Linux ) +# Agathe Mollé +# (c) 2016 Serpent Consulting Services Pvt. Ltd. +# (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import ( super_calendar, diff --git a/super_calendar/models/super_calendar.py b/super_calendar/models/super_calendar.py index 3fa9161ed7a..3b789454f25 100644 --- a/super_calendar/models/super_calendar.py +++ b/super_calendar/models/super_calendar.py @@ -1,34 +1,17 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Odoo, Open Source Management Solution -# -# Copyright (c) All rights reserved: -# (c) 2012 Agile Business Group sagl () +# Copyright +# (c) 2012-2015 Agile Business Group sagl () # (c) 2012 Domsense srl () # (c) 2015 Anubía, soluciones en la nube,SL (http://www.anubia.es) # Alejandro Santana # (c) 2015 Savoir-faire Linux ) # Agathe Mollé -# -# 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 http://www.gnu.org/licenses -# -############################################################################## +# (c) 2016 Serpent Consulting Services Pvt. Ltd. +# (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import fields, models - def _models_get(self): model_obj = self.env['ir.model'] model_list = model_obj.search([]) diff --git a/super_calendar/models/super_calendar_configurator.py b/super_calendar/models/super_calendar_configurator.py index 8c116a52b04..ae41c1fad93 100644 --- a/super_calendar/models/super_calendar_configurator.py +++ b/super_calendar/models/super_calendar_configurator.py @@ -1,30 +1,14 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Odoo, Open Source Management Solution -# -# Copyright (c) All rights reserved: -# (c) 2012 Agile Business Group sagl () +# Copyright +# (c) 2012-2015 Agile Business Group sagl () # (c) 2012 Domsense srl () # (c) 2015 Anubía, soluciones en la nube,SL (http://www.anubia.es) # Alejandro Santana # (c) 2015 Savoir-faire Linux ) # Agathe Mollé -# -# 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 http://www.gnu.org/licenses -# -############################################################################## +# (c) 2016 Serpent Consulting Services Pvt. Ltd. +# (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). import logging from datetime import datetime diff --git a/super_calendar/models/super_calendar_configurator_line.py b/super_calendar/models/super_calendar_configurator_line.py index 90626f762a6..59a413d47a7 100644 --- a/super_calendar/models/super_calendar_configurator_line.py +++ b/super_calendar/models/super_calendar_configurator_line.py @@ -1,30 +1,14 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Odoo, Open Source Management Solution -# -# Copyright (c) All rights reserved: -# (c) 2012 Agile Business Group sagl () +# Copyright +# (c) 2012-2015 Agile Business Group sagl () # (c) 2012 Domsense srl () # (c) 2015 Anubía, soluciones en la nube,SL (http://www.anubia.es) # Alejandro Santana # (c) 2015 Savoir-faire Linux ) # Agathe Mollé -# -# 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 http://www.gnu.org/licenses -# -############################################################################## +# (c) 2016 Serpent Consulting Services Pvt. Ltd. +# (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import fields, models diff --git a/super_calendar/tests/__init__.py b/super_calendar/tests/__init__.py index 3f2bddcf436..710f0647c96 100644 --- a/super_calendar/tests/__init__.py +++ b/super_calendar/tests/__init__.py @@ -1,7 +1,14 @@ # -*- coding: utf-8 -*- -################################################################ -# License, author and contributors information in: # -# __openerp__.py file at the root folder of this module. # -################################################################ +# Copyright +# (c) 2012-2015 Agile Business Group sagl () +# Lorenzo Battistini +# (c) 2012 Domsense srl () +# (c) 2015 Anubía, soluciones en la nube,SL (http://www.anubia.es) +# Alejandro Santana +# (c) 2015 Savoir-faire Linux ) +# Agathe Mollé +# (c) 2016 Serpent Consulting Services Pvt. Ltd. +# (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import test_super_calendar diff --git a/super_calendar/tests/test_super_calendar.py b/super_calendar/tests/test_super_calendar.py index fd6b1a4f42f..298519b0804 100644 --- a/super_calendar/tests/test_super_calendar.py +++ b/super_calendar/tests/test_super_calendar.py @@ -1,30 +1,14 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Odoo, Open Source Management Solution -# -# Copyright (c) All rights reserved: -# (c) 2012 Agile Business Group sagl () +# Copyright +# (c) 2012-2015 Agile Business Group sagl () # (c) 2012 Domsense srl () # (c) 2015 Anubía, soluciones en la nube,SL (http://www.anubia.es) # Alejandro Santana # (c) 2015 Savoir-faire Linux ) # Agathe Mollé -# -# 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 http://www.gnu.org/licenses -# -############################################################################## +# (c) 2016 Serpent Consulting Services Pvt. Ltd. +# (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp.tests import TransactionCase from datetime import datetime