From 9a474d509c6058413faa238023bb4ee07c11a9b2 Mon Sep 17 00:00:00 2001 From: tarteo Date: Wed, 14 Feb 2018 13:39:27 +0100 Subject: [PATCH] [MIG] html_image_url_extractor: Migration to 11.0 --- html_image_url_extractor/README.rst | 9 ++++++--- html_image_url_extractor/__init__.py | 3 +-- html_image_url_extractor/__manifest__.py | 8 ++++---- html_image_url_extractor/models/__init__.py | 3 +-- html_image_url_extractor/models/ir_fields_converter.py | 3 +-- html_image_url_extractor/tests/__init__.py | 3 +-- html_image_url_extractor/tests/test_extractor.py | 3 +-- 7 files changed, 15 insertions(+), 17 deletions(-) diff --git a/html_image_url_extractor/README.rst b/html_image_url_extractor/README.rst index 0f95361ea..a3274104f 100644 --- a/html_image_url_extractor/README.rst +++ b/html_image_url_extractor/README.rst @@ -1,5 +1,5 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: https://www.gnu.org/licenses/agpl :alt: License: AGPL-3 ========================== @@ -38,7 +38,7 @@ QWeb example:: .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/149/10.0 + :target: https://runbot.odoo-community.org/runbot/149/11.0 Known issues / Roadmap ====================== @@ -61,6 +61,9 @@ Contributors * Jairo Llopis * Vicent Cubells +* Dennis Sluijk + +Do not contact contributors directly about support or help with technical issues. Maintainer ---------- diff --git a/html_image_url_extractor/__init__.py b/html_image_url_extractor/__init__.py index a77a6fcbc..31660d6a9 100644 --- a/html_image_url_extractor/__init__.py +++ b/html_image_url_extractor/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from . import models diff --git a/html_image_url_extractor/__manifest__.py b/html_image_url_extractor/__manifest__.py index 225e22a83..959927493 100644 --- a/html_image_url_extractor/__manifest__.py +++ b/html_image_url_extractor/__manifest__.py @@ -1,14 +1,14 @@ -# -*- coding: utf-8 -*- # Copyright 2016-2017 Jairo Llopis # Copyright 2016 Tecnativa - Vicent Cubells -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). { "name": "Image URLs from HTML field", "summary": "Extract images found in any HTML field", - "version": "10.0.1.0.0", + "version": "11.0.1.0.0", "category": "Tools", - "website": "https://www.tecnativa.com", + "website": "https://github.com/OCA/server-tools", "author": "Tecnativa, " + "Onestein, " "Odoo Community Association (OCA)", "license": "AGPL-3", "application": False, diff --git a/html_image_url_extractor/models/__init__.py b/html_image_url_extractor/models/__init__.py index 6fcbec0b6..e21238ee9 100644 --- a/html_image_url_extractor/models/__init__.py +++ b/html_image_url_extractor/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from . import ir_fields_converter diff --git a/html_image_url_extractor/models/ir_fields_converter.py b/html_image_url_extractor/models/ir_fields_converter.py index 04c85a271..e97d2f7dc 100644 --- a/html_image_url_extractor/models/ir_fields_converter.py +++ b/html_image_url_extractor/models/ir_fields_converter.py @@ -1,7 +1,6 @@ -# -*- coding: utf-8 -*- # Copyright 2016-2017 Jairo Llopis # Copyright 2016 Tecnativa - Vicent Cubells -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). import re import logging diff --git a/html_image_url_extractor/tests/__init__.py b/html_image_url_extractor/tests/__init__.py index f8ca9e601..d9d2b331a 100644 --- a/html_image_url_extractor/tests/__init__.py +++ b/html_image_url_extractor/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from . import test_extractor diff --git a/html_image_url_extractor/tests/test_extractor.py b/html_image_url_extractor/tests/test_extractor.py index 1400c5019..29a6ed918 100644 --- a/html_image_url_extractor/tests/test_extractor.py +++ b/html_image_url_extractor/tests/test_extractor.py @@ -1,6 +1,5 @@ -# -*- coding: utf-8 -*- # Copyright 2016-2017 Jairo Llopis -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from lxml import etree from odoo.tools import mute_logger