diff --git a/admin_technical_features/README.rst b/admin_technical_features/README.rst new file mode 100644 index 0000000..20891a7 --- /dev/null +++ b/admin_technical_features/README.rst @@ -0,0 +1,44 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + +Admin Technical Features +======================== + +Checks the technical features box for administrator user. + +.. image:: /admin_technical_features/static/admin_technical_features.png + + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed feedback +`here `_. + + +Credits +======= + +Contributors +------------ +* Bruno Joliveau +* Sandy Carter +* Jordi Riera + +Maintainer +---------- + +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. + diff --git a/admin_technical_features/__init__.py b/admin_technical_features/__init__.py new file mode 100644 index 0000000..eb06fa1 --- /dev/null +++ b/admin_technical_features/__init__.py @@ -0,0 +1,21 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# This module copyright (C) 2014 Savoir-faire Linux +# (). +# +# 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/admin_technical_features/__openerp__.py b/admin_technical_features/__openerp__.py new file mode 100644 index 0000000..1573854 --- /dev/null +++ b/admin_technical_features/__openerp__.py @@ -0,0 +1,42 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# This module copyright (C) 2014 Savoir-faire Linux +# (). +# +# 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 . +# +############################################################################## + +{ + 'name': 'Admin Technical Features', + 'version': '9.0.0.1.0', + 'author': "Savoir-faire Linux,Odoo Community Association (OCA)", + 'maintainer': 'Savoir-faire Linux', + 'website': 'http://www.savoirfairelinux.com', + 'license': 'AGPL-3', + 'category': 'Administration', + 'summary': 'Checks the technical features box for admin user.', + 'depends': ['base_import'], + 'external_dependencies': { + 'python': [], + }, + 'data': [ + 'res_groups.xml', + ], + 'demo': [], + 'test': [], + 'installable': True, +} diff --git a/admin_technical_features/res_groups.xml b/admin_technical_features/res_groups.xml new file mode 100644 index 0000000..04e1dfa --- /dev/null +++ b/admin_technical_features/res_groups.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/admin_technical_features/static/admin_technical_features.png b/admin_technical_features/static/admin_technical_features.png new file mode 100644 index 0000000..b93cd3d Binary files /dev/null and b/admin_technical_features/static/admin_technical_features.png differ diff --git a/admin_technical_features/static/description/icon.png b/admin_technical_features/static/description/icon.png new file mode 100644 index 0000000..62e4d4b Binary files /dev/null and b/admin_technical_features/static/description/icon.png differ