From 2b3bc3c8eee81ea3858f92bb2756777165c70e95 Mon Sep 17 00:00:00 2001 From: Alexandre Fayolle Date: Thu, 21 Jan 2016 22:30:02 +0100 Subject: [PATCH] 9.0 migration of server_environment --- server_environment_files_sample/README.rst | 75 +++++++++++++++++++ .../__openerp__.py | 21 +----- 2 files changed, 78 insertions(+), 18 deletions(-) create mode 100644 server_environment_files_sample/README.rst diff --git a/server_environment_files_sample/README.rst b/server_environment_files_sample/README.rst new file mode 100644 index 0000000..cb730cd --- /dev/null +++ b/server_environment_files_sample/README.rst @@ -0,0 +1,75 @@ +.. image:: https://img.shields.io/badge/licence-GPL--3-blue.svg + :target: http://www.gnu.org/licenses/gpl-3.0-standalone.html + :alt: License: GPL-3 + +================================= +server environment files (sample) +================================= + +This is an example module to be used for +`server_environment_files`. Check that module's README for more +information. + + +Installation +============ + +Do not install this module as is. Copy it to a directory in your +addons-path and rename it to +`server_environment_files`, then edit the various configurations. + +Usage +===== + +This module is not testable on runbot (see above). + + + +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 +`_. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Alexandre Fayolle +* Daniel Reis +* Florent Xicluna +* Guewen Baconnier +* Holger Brunn +* Joël Grand-Guillaume +* Nicolas Bessi +* Wingo +* Yannick Vaucher + + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://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 https://odoo-community.org. diff --git a/server_environment_files_sample/__openerp__.py b/server_environment_files_sample/__openerp__.py index 8a71c10..5aecaf3 100644 --- a/server_environment_files_sample/__openerp__.py +++ b/server_environment_files_sample/__openerp__.py @@ -21,29 +21,14 @@ { "name": "Example server configuration environment files repository module", - "version": "8.0.1.0.0", + "version": "9.0.1.0.0", "depends": ["base"], "author": "Camptocamp,Odoo Community Association (OCA)", - "description": """\ -File store for environment file sample module -============================================= - -This module provides a file store for classical configuration by -environment file pattern into OpenERP provided by the -`server_environment` addon. Please look at this module for more info -and doc. - -Note: you should not install this module 'as is', since it is an -example module, but rather adapt it to your needs, and ensure your -version of the module gets picked up by OpenERP. This can be ensured -by putting the directory where your version of -server_environment_files lives before this one in the addons-path -variable of the OpenERP configuration file. - """, + "summary": "sample config file for server_environment", "website": "http://www.camptocamp.com", "license": "GPL-3 or any later version", "category": "Tools", "data": [], - 'installable': False, + 'installable': True, "active": False, }