diff --git a/muk_web_export_attachment/__manifest__.py b/muk_web_export_attachment/__manifest__.py index 5a00029..df4fb59 100644 --- a/muk_web_export_attachment/__manifest__.py +++ b/muk_web_export_attachment/__manifest__.py @@ -20,7 +20,7 @@ { "name": "MuK Export Attachment", "summary": """Export Odoo Attachments""", - "version": "11.0.1.1 .0", + "version": "11.0.1.1.1", "category": "Extra Tools", "license": "AGPL-3", "website": "http://www.mukit.at", diff --git a/muk_web_export_attachment/wizards/convert.py b/muk_web_export_attachment/wizards/convert.py index 0302d2c..f940c2e 100644 --- a/muk_web_export_attachment/wizards/convert.py +++ b/muk_web_export_attachment/wizards/convert.py @@ -25,7 +25,7 @@ import mimetypes from odoo import _, api, fields, models -from odoo.addons.muk_utils.http import get_response +from odoo.addons.muk_utils.tools.http import get_response from odoo.addons.muk_converter.tools import converter _logger = logging.getLogger(__name__) diff --git a/muk_web_preview_mail/__manifest__.py b/muk_web_preview_mail/__manifest__.py index d8ef91d..8479e13 100644 --- a/muk_web_preview_mail/__manifest__.py +++ b/muk_web_preview_mail/__manifest__.py @@ -20,7 +20,7 @@ { "name": "MuK Preview Mail", "summary": """Mail Preview""", - "version": "11.0.2.0.0", + "version": "11.0.2.0.1", "category": "Extra Tools", "license": "AGPL-3", "website": "http://www.mukit.at", diff --git a/muk_web_preview_mail/controllers/main.py b/muk_web_preview_mail/controllers/main.py index c01dd06..6aba1ea 100644 --- a/muk_web_preview_mail/controllers/main.py +++ b/muk_web_preview_mail/controllers/main.py @@ -29,8 +29,8 @@ import werkzeug from odoo import _, http from odoo.http import request, Response -from odoo.addons.muk_utils.http import get_response -from odoo.addons.muk_utils.http import make_error_response +from odoo.addons.muk_utils.tools.http import get_response +from odoo.addons.muk_utils.tools.http import make_error_response _logger = logging.getLogger(__name__) diff --git a/muk_web_preview_msoffice/__manifest__.py b/muk_web_preview_msoffice/__manifest__.py index 123ecb9..dae23ba 100644 --- a/muk_web_preview_msoffice/__manifest__.py +++ b/muk_web_preview_msoffice/__manifest__.py @@ -20,7 +20,7 @@ { "name": "MuK Preview MS Office", "summary": """MS Office Preview""", - "version": "11.0.2.0.0", + "version": "11.0.2.0.1", "category": "Extra Tools", "license": "AGPL-3", "website": "http://www.mukit.at", diff --git a/muk_web_preview_msoffice/controllers/main.py b/muk_web_preview_msoffice/controllers/main.py index ae43454..32ed554 100644 --- a/muk_web_preview_msoffice/controllers/main.py +++ b/muk_web_preview_msoffice/controllers/main.py @@ -26,8 +26,8 @@ import werkzeug from odoo import _, http from odoo.http import request -from odoo.addons.muk_utils.http import get_response -from odoo.addons.muk_utils.http import make_error_response +from odoo.addons.muk_utils.tools.http import get_response +from odoo.addons.muk_utils.tools.http import make_error_response _logger = logging.getLogger(__name__) diff --git a/muk_web_preview_rst/__manifest__.py b/muk_web_preview_rst/__manifest__.py index a3618e2..7a4a04f 100644 --- a/muk_web_preview_rst/__manifest__.py +++ b/muk_web_preview_rst/__manifest__.py @@ -20,7 +20,7 @@ { "name": "MuK Preview reStructuredText", "summary": """reStructuredText Preview""", - "version": "11.0.1.0.0", + "version": "11.0.1.0.1", "category": "Extra Tools", "license": "AGPL-3", "website": "http://www.mukit.at", diff --git a/muk_web_preview_rst/controllers/main.py b/muk_web_preview_rst/controllers/main.py index 1b27d33..d1ff68f 100644 --- a/muk_web_preview_rst/controllers/main.py +++ b/muk_web_preview_rst/controllers/main.py @@ -21,9 +21,9 @@ import logging from odoo import _, http -from odoo.addons.muk_utils.http import get_response -from odoo.addons.muk_utils.http import make_error_response -from odoo.addons.muk_utils.tools import parse_rst +from odoo.addons.muk_utils.tools.http import get_response +from odoo.addons.muk_utils.tools.http import make_error_response +from odoo.addons.muk_utils.tools.parse_rst import rst2html _logger = logging.getLogger(__name__) @@ -35,5 +35,5 @@ class ReStructuredTextController(http.Controller): if status != 200: return make_error_response(status, content or _("Unknown Error")) else: - return parse_rst.rst2html(content) + return rst2html(content) \ No newline at end of file