-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by pedrobaeza
- Loading branch information
Showing
42 changed files
with
2,422 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# generated from manifests external_dependencies | ||
dataclasses | ||
odoorpc | ||
openupgradelib | ||
raven |
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 @@ | ||
../../../../upgrade_analysis |
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,6 @@ | ||
import setuptools | ||
|
||
setuptools.setup( | ||
setup_requires=['setuptools-odoo'], | ||
odoo_addon=True, | ||
) |
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,8 @@ | ||
================ | ||
Upgrade Analysis | ||
================ | ||
|
||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
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,6 @@ | ||
from . import odoo_patch | ||
from . import models | ||
from . import wizards | ||
from . import blacklist | ||
from . import compare | ||
from . import upgrade_log |
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,26 @@ | ||
# Copyright 2011-2015 Therp BV <https://therp.nl> | ||
# Copyright 2016 Opener B.V. <https://opener.am> | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
{ | ||
"name": "Upgrade Analysis", | ||
"summary": "performs a difference analysis between modules" | ||
" installed on two different Odoo instances", | ||
"version": "14.0.1.0.0", | ||
"category": "Migration", | ||
"author": "Therp BV, Opener B.V., GRAP, Odoo Community Association (OCA)", | ||
"website": "https://github.com/OCA/server-tools", | ||
"data": [ | ||
"security/ir.model.access.csv", | ||
"views/menu.xml", | ||
"views/view_upgrade_comparison_config.xml", | ||
"views/view_upgrade_analysis.xml", | ||
"views/view_upgrade_record.xml", | ||
"wizards/view_upgrade_generate_record_wizard.xml", | ||
"wizards/view_upgrade_install_wizard.xml", | ||
], | ||
"installable": True, | ||
"external_dependencies": { | ||
"python": ["dataclasses", "odoorpc", "openupgradelib"], | ||
}, | ||
"license": "AGPL-3", | ||
} |
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 @@ | ||
BLACKLIST_MODULES = [] | ||
|
||
# the hw_* modules are not affected by a migration as they don't | ||
# contain any ORM functionality, but they do start up threads that | ||
# delay the process and spit out annoying log messages continously. | ||
|
||
# We also don't want to analyze tests modules | ||
BLACKLIST_MODULES_STARTS_WITH = ["hw_", "test_"] | ||
|
||
BLACKLIST_MODULES_ENDS_WITH = ["_test"] |
Oops, something went wrong.