-
-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] server_env_connector_magento: Migration to 12.0
- Loading branch information
Showing
10 changed files
with
515 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright 2014-2017 Camptocamp SA | ||
# Copyright 2014-2019 Camptocamp SA | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) | ||
|
||
{'name': 'Magento Connector - Server Environment Configuration', | ||
'version': '10.0.1.0.0', | ||
'author': "Camptocamp,Odoo Community Association (OCA)", | ||
'maintainer': 'Camptocamp', | ||
'license': 'AGPL-3', | ||
'category': 'Hidden', | ||
'depends': ['base', | ||
'server_environment', | ||
'connector_magento', | ||
], | ||
'website': 'https://www.camptocamp.com', | ||
'data': [], | ||
'test': [], | ||
'installable': True, | ||
'auto_install': False, | ||
} | ||
{ | ||
'name': 'Magento Connector - Server Environment Configuration', | ||
'version': '12.0.1.0.0', | ||
'author': "Camptocamp,Odoo Community Association (OCA)", | ||
'maintainer': 'Camptocamp', | ||
'license': 'AGPL-3', | ||
'category': 'Hidden', | ||
'depends': [ | ||
'base', | ||
'server_environment', | ||
'connector_magento', | ||
], | ||
'website': 'https://www.camptocamp.com', | ||
'installable': True, | ||
} |
20 changes: 0 additions & 20 deletions
20
server_env_connector_magento/i18n/server_env_connector_magento.pot
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
# -*- coding: utf-8 -*- | ||
from . import magento_backend |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
In the configuration file, you can configure the url, login and | ||
password of the Magento Backends. | ||
|
||
Exemple of the section to put in the configuration file:: | ||
|
||
[magento_backend.name_of_the_backend] | ||
location = http://localhost/magento/ | ||
username = my_api_login | ||
password = my_api_password | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
* Guewen Baconnier <guewen.baconnier@camptocamp.com> | ||
* Julien Coux <julien.coux@camptocamp.com> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
This module is based on the ``server_environment`` module to use files for | ||
configuration. Thus we can have a different configutation for each | ||
environment (dev, test, staging, prod). This module define the config | ||
variables for the ``connector_magento`` module. |
Oops, something went wrong.