-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Super_calendar v9 #528
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Super_calendar v9 #528
Changes from all commits
fd9e8c0
76cdd51
cc680a6
178a2e6
8f73689
c979af8
c466f6b
e7b2e64
440628c
c25ae9b
e49eb07
e4c4bd6
cfdd84e
32e5bfb
aed18c5
512ce84
7da6666
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,22 +1,14 @@ | ||
| # -*- coding: utf-8 -*- | ||
| ############################################################################## | ||
| # | ||
| # Copyright (C) 2012 Agile Business Group sagl (<http://www.agilebg.com>) | ||
| # Copyright (C) 2012 Domsense srl (<http://www.domsense.com>) | ||
| # | ||
| # 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 <http://www.gnu.org/licenses/>. | ||
| # | ||
| ############################################################################## | ||
| # Copyright | ||
| # (c) 2012-2015 Agile Business Group sagl (<http://www.agilebg.com>) | ||
| # Lorenzo Battistini <lorenzo.battistini@agilebg.com> | ||
| # (c) 2012 Domsense srl (<http://www.domsense.com>) | ||
| # (c) 2015 Anubía, soluciones en la nube,SL (http://www.anubia.es) | ||
| # Alejandro Santana <alejandrosantana@anubia.es> | ||
| # (c) 2015 Savoir-faire Linux <http://www.savoirfairelinux.com>) | ||
| # Agathe Mollé <agathe.molle@savoirfairelinux.com> | ||
| # (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 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,38 +1,26 @@ | ||
| # -*- coding: utf-8 -*- | ||
| ############################################################################## | ||
| # | ||
| # Copyright (c) All rights reserved: | ||
| # Copyright | ||
| # (c) 2012-2015 Agile Business Group sagl (<http://www.agilebg.com>) | ||
| # Lorenzo Battistini <lorenzo.battistini@agilebg.com> | ||
| # (c) 2012 Domsense srl (<http://www.domsense.com>) | ||
| # (c) 2015 Anubía, soluciones en la nube,SL (http://www.anubia.es) | ||
| # Alejandro Santana <alejandrosantana@anubia.es> | ||
| # (c) 2015 Savoir-faire Linux <http://www.savoirfairelinux.com>) | ||
| # Agathe Mollé <agathe.molle@savoirfairelinux.com> | ||
| # | ||
| # 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': [ | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. web_calendar depends on web and web depdends on base. |
||
|
|
@@ -44,9 +32,10 @@ | |
| 'data/cron_data.xml', | ||
| 'security/ir.model.access.csv', | ||
| ], | ||
| 'installable': True, | ||
| 'demo': [], | ||
| 'test': [], | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove empty keys |
||
| 'installable': False, | ||
| # 'installable': True, | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove dead code |
||
| 'application': True, | ||
| 'auto_install': False, | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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 (<http://www.agilebg.com>) | ||
| # (c) 2012 Domsense srl (<http://www.domsense.com>) | ||
| # (c) 2015 Anubía, soluciones en la nube,SL (http://www.anubia.es) | ||
| # Alejandro Santana <alejandrosantana@anubia.es> | ||
| # (c) 2015 Savoir-faire Linux <http://www.savoirfairelinux.com>) | ||
| # Agathe Mollé <agathe.molle@savoirfairelinux.com> | ||
| # (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, | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. empty line at EOF |
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,34 +1,17 @@ | ||
| # -*- coding: utf-8 -*- | ||
| ############################################################################## | ||
| # | ||
| # Odoo, Open Source Management Solution | ||
| # | ||
| # Copyright (c) All rights reserved: | ||
| # (c) 2012 Agile Business Group sagl (<http://www.agilebg.com>) | ||
| # Copyright | ||
| # (c) 2012-2015 Agile Business Group sagl (<http://www.agilebg.com>) | ||
| # (c) 2012 Domsense srl (<http://www.domsense.com>) | ||
| # (c) 2015 Anubía, soluciones en la nube,SL (http://www.anubia.es) | ||
| # Alejandro Santana <alejandrosantana@anubia.es> | ||
| # (c) 2015 Savoir-faire Linux <http://www.savoirfairelinux.com>) | ||
| # Agathe Mollé <agathe.molle@savoirfairelinux.com> | ||
| # | ||
| # 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 | ||
|
|
||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There should be 2 blank lines between import statements and method / class |
||
|
|
||
| def _models_get(self): | ||
| model_obj = self.env['ir.model'] | ||
| model_list = model_obj.search([]) | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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 (<http://www.agilebg.com>) | ||
| # Lorenzo Battistini <lorenzo.battistini@agilebg.com> | ||
| # (c) 2012 Domsense srl (<http://www.domsense.com>) | ||
| # (c) 2015 Anubía, soluciones en la nube,SL (http://www.anubia.es) | ||
| # Alejandro Santana <alejandrosantana@anubia.es> | ||
| # (c) 2015 Savoir-faire Linux <http://www.savoirfairelinux.com>) | ||
| # Agathe Mollé <agathe.molle@savoirfairelinux.com> | ||
| # (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 | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Empty lines at EOF |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Must be a blank new line at the EOF