-
-
Notifications
You must be signed in to change notification settings - Fork 753
[MIG][10.0] website_canonical_url #449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
a6b4124
first release of website_canonical_url
a72de03
FIX `website_canonical_url` review remarks
2fb66ae
[FIX + IMP] `website_canonical_url`
0e15eb9
[8.0][IMP][website_canonical_url] Safer, prefer root, relative paths …
yajo 08aa905
[9.0][website_canonical_url] Migrate. Add tests.
yajo 00ec952
OCA Transbot updated translations from Transifex
oca-transbot 2df9c7f
[MIG][10.0] website_canonical_url
zeroheure 5747bc2
website_canonical_url: refactor and improve tests
simahawk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,85 @@ | ||
| .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.png | ||
| :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
| :alt: License: AGPL-3 | ||
|
|
||
| ===================== | ||
| Website Canonical URL | ||
| ===================== | ||
|
|
||
| In Website Builder, eCommerce, Blog, etc. Odoo add parameters in URLs, like category, | ||
| page or sorting. This is a bad thing for SEO because it creates DUST (Duplicate URL, | ||
| Same Text) and Duplicate Content. That is to say, multiple URLs that leads to the same | ||
| page search engine's index. | ||
|
|
||
| This module doesn't prevent Odoo to generate such URLs, but it helps to reduce the | ||
| search engine's index size by adding canonical URLs for each page : | ||
| It insert a HTML tag in the html header | ||
| that contains a `canonical URL <https://support.google.com/webmasters/answer/139066>`_ | ||
| for the current page, no matter what query string is. | ||
| Additionally you'll have `rel=next and rel=prev links | ||
| <https://webmasters.googleblog.com/2011/09/pagination-with-relnext-and-relprev.html>`_ | ||
| whenever a pager is found. | ||
|
|
||
|
|
||
| Configuration | ||
| ------------- | ||
|
|
||
| Canonical URL is absolute. The domain name by default matches | ||
|
|
||
| "Settings / Technical / System Parameters / web.base.url" | ||
|
|
||
| This might not be enough to make sure that you have always one and only one URL | ||
| to access your resources. | ||
|
|
||
| You can force the domain by setting "Canonical domain" field into website settings. | ||
|
|
||
|
|
||
| How to verify | ||
| ------------- | ||
|
|
||
| To check this on your website inspect the source of a page: | ||
| you'll find canonical and prev/next "<link />" elements inside "<head />". | ||
|
|
||
| On a demo site (like Runbot) you can go to "/page/website_canonical_url.canonical_demo" | ||
| and inspect page's source. | ||
|
|
||
|
|
||
| .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas | ||
| :alt: Try me on Runbot | ||
| :target: https://runbot.odoo-community.org/runbot/186/10.0 | ||
|
|
||
|
|
||
| Bug Tracker | ||
| =========== | ||
|
|
||
| Bugs are tracked on `GitHub Issues | ||
| <https://github.com/OCA/website/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 | ||
| ======= | ||
|
|
||
| Contributors | ||
| ------------ | ||
|
|
||
| * Thomas Rehn <thomas.rehn@initos.com> | ||
| * Rami Alwafaie <rami.alwafaie@initos.com> | ||
| * Jairo Llopis <jairo.llopis@tecnativa.com> | ||
| * Xavier Brochard <zeroheure@zeroheure.info> | ||
| * Simone Orsi <simone.orsi@camptocamp.com> | ||
|
|
||
| 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. | ||
This file contains hidden or 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,5 @@ | ||
| # -*- coding: utf-8 -*- | ||
| # Copyright initOS GmbH 2016 | ||
| # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
|
||
| from . import models |
This file contains hidden or 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,24 @@ | ||
| # -*- coding: utf-8 -*- | ||
| # Copyright initOS GmbH 2016 | ||
| # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
|
||
| { | ||
| 'name': "Website Canonical URL", | ||
| 'summary': "Canonical URL in Website Headers", | ||
| 'author': "initOS GmbH, Tecnativa, " | ||
| "Camptocamp, Odoo Community Association (OCA)", | ||
| 'website': "https://github.com/OCA/website", | ||
| 'category': 'Website', | ||
| 'version': '10.0.1.1.0', | ||
| 'license': 'AGPL-3', | ||
| 'depends': [ | ||
| 'website', | ||
| ], | ||
| 'data': [ | ||
| 'views/website_views.xml', | ||
| 'templates/layout.xml', | ||
| ], | ||
| 'demo': [ | ||
| 'demo/pages.xml', | ||
| ], | ||
| } |
This file contains hidden or 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,18 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- Copyright 2018 Simone Orsi <simone.orsi@camptocamp.com> | ||
| Copyright 2016 Jairo Llopis <jairo.llopis@tecnativa.com> | ||
| License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). --> | ||
| <odoo> | ||
|
|
||
| <template id="canonical_demo" | ||
| page="True" | ||
| name="Canonical URL and pager demo"> | ||
| <t t-call="website.layout"> | ||
| <!-- Add a fake pager to test the rel=prev/next links --> | ||
| <t t-set="pager" | ||
| t-value="website.pager(request.httprequest.path, 100, 2, url_args=request.httprequest.args)"/> | ||
| <h1>Check source code to see pager and canonical URL.</h1> | ||
| </t> | ||
| </template> | ||
|
|
||
| </odoo> |
This file contains hidden or 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,24 @@ | ||
| # Translation of Odoo Server. | ||
| # This file contains the translation of the following modules: | ||
| # * website_canonical_url | ||
| # | ||
| # Translators: | ||
| # OCA Transbot <transbot@odoo-community.org>, 2016 | ||
| msgid "" | ||
| msgstr "" | ||
| "Project-Id-Version: Odoo Server 8.0\n" | ||
| "Report-Msgid-Bugs-To: \n" | ||
| "POT-Creation-Date: 2016-11-25 01:52+0000\n" | ||
| "PO-Revision-Date: 2016-11-25 01:52+0000\n" | ||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||
| "Language-Team: Afrikaans (https://www.transifex.com/oca/teams/23907/af/)\n" | ||
| "MIME-Version: 1.0\n" | ||
| "Content-Type: text/plain; charset=UTF-8\n" | ||
| "Content-Transfer-Encoding: \n" | ||
| "Language: af\n" | ||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
|
|
||
| #. module: website_canonical_url | ||
| #: model:ir.model,name:website_canonical_url.model_website | ||
| msgid "Website" | ||
| msgstr "Webtuiste" |
This file contains hidden or 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,24 @@ | ||
| # Translation of Odoo Server. | ||
| # This file contains the translation of the following modules: | ||
| # * website_canonical_url | ||
| # | ||
| # Translators: | ||
| # OCA Transbot <transbot@odoo-community.org>, 2016 | ||
| msgid "" | ||
| msgstr "" | ||
| "Project-Id-Version: Odoo Server 8.0\n" | ||
| "Report-Msgid-Bugs-To: \n" | ||
| "POT-Creation-Date: 2016-11-25 01:52+0000\n" | ||
| "PO-Revision-Date: 2016-11-25 01:52+0000\n" | ||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||
| "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" | ||
| "MIME-Version: 1.0\n" | ||
| "Content-Type: text/plain; charset=UTF-8\n" | ||
| "Content-Transfer-Encoding: \n" | ||
| "Language: ar\n" | ||
| "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" | ||
|
|
||
| #. module: website_canonical_url | ||
| #: model:ir.model,name:website_canonical_url.model_website | ||
| msgid "Website" | ||
| msgstr "الموقع" |
This file contains hidden or 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,24 @@ | ||
| # Translation of Odoo Server. | ||
| # This file contains the translation of the following modules: | ||
| # * website_canonical_url | ||
| # | ||
| # Translators: | ||
| # Kaloyan Naumov <kaloyan@lumnus.net>, 2016 | ||
| msgid "" | ||
| msgstr "" | ||
| "Project-Id-Version: Odoo Server 8.0\n" | ||
| "Report-Msgid-Bugs-To: \n" | ||
| "POT-Creation-Date: 2016-11-25 01:52+0000\n" | ||
| "PO-Revision-Date: 2016-11-25 01:52+0000\n" | ||
| "Last-Translator: Kaloyan Naumov <kaloyan@lumnus.net>, 2016\n" | ||
| "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" | ||
| "MIME-Version: 1.0\n" | ||
| "Content-Type: text/plain; charset=UTF-8\n" | ||
| "Content-Transfer-Encoding: \n" | ||
| "Language: bg\n" | ||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
|
|
||
| #. module: website_canonical_url | ||
| #: model:ir.model,name:website_canonical_url.model_website | ||
| msgid "Website" | ||
| msgstr "Уебсайт" |
This file contains hidden or 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,24 @@ | ||
| # Translation of Odoo Server. | ||
| # This file contains the translation of the following modules: | ||
| # * website_canonical_url | ||
| # | ||
| # Translators: | ||
| # OCA Transbot <transbot@odoo-community.org>, 2016 | ||
| msgid "" | ||
| msgstr "" | ||
| "Project-Id-Version: Odoo Server 8.0\n" | ||
| "Report-Msgid-Bugs-To: \n" | ||
| "POT-Creation-Date: 2016-11-25 01:52+0000\n" | ||
| "PO-Revision-Date: 2016-11-25 01:52+0000\n" | ||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||
| "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" | ||
| "MIME-Version: 1.0\n" | ||
| "Content-Type: text/plain; charset=UTF-8\n" | ||
| "Content-Transfer-Encoding: \n" | ||
| "Language: bs\n" | ||
| "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" | ||
|
|
||
| #. module: website_canonical_url | ||
| #: model:ir.model,name:website_canonical_url.model_website | ||
| msgid "Website" | ||
| msgstr "Web stranica" |
This file contains hidden or 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,24 @@ | ||
| # Translation of Odoo Server. | ||
| # This file contains the translation of the following modules: | ||
| # * website_canonical_url | ||
| # | ||
| # Translators: | ||
| # Carles Antoli <carlesantoli@hotmail.com>, 2016 | ||
| msgid "" | ||
| msgstr "" | ||
| "Project-Id-Version: Odoo Server 8.0\n" | ||
| "Report-Msgid-Bugs-To: \n" | ||
| "POT-Creation-Date: 2016-07-07 01:09+0000\n" | ||
| "PO-Revision-Date: 2016-07-07 01:09+0000\n" | ||
| "Last-Translator: Carles Antoli <carlesantoli@hotmail.com>, 2016\n" | ||
| "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" | ||
| "MIME-Version: 1.0\n" | ||
| "Content-Type: text/plain; charset=UTF-8\n" | ||
| "Content-Transfer-Encoding: \n" | ||
| "Language: ca\n" | ||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
|
|
||
| #. module: website_canonical_url | ||
| #: model:ir.model,name:website_canonical_url.model_website | ||
| msgid "Website" | ||
| msgstr "Lloc web" |
This file contains hidden or 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,24 @@ | ||
| # Translation of Odoo Server. | ||
| # This file contains the translation of the following modules: | ||
| # * website_canonical_url | ||
| # | ||
| # Translators: | ||
| # OCA Transbot <transbot@odoo-community.org>, 2016 | ||
| msgid "" | ||
| msgstr "" | ||
| "Project-Id-Version: Odoo Server 8.0\n" | ||
| "Report-Msgid-Bugs-To: \n" | ||
| "POT-Creation-Date: 2016-11-25 01:52+0000\n" | ||
| "PO-Revision-Date: 2016-11-25 01:52+0000\n" | ||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||
| "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" | ||
| "MIME-Version: 1.0\n" | ||
| "Content-Type: text/plain; charset=UTF-8\n" | ||
| "Content-Transfer-Encoding: \n" | ||
| "Language: cs\n" | ||
| "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" | ||
|
|
||
| #. module: website_canonical_url | ||
| #: model:ir.model,name:website_canonical_url.model_website | ||
| msgid "Website" | ||
| msgstr "Webová stránka" |
This file contains hidden or 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,24 @@ | ||
| # Translation of Odoo Server. | ||
| # This file contains the translation of the following modules: | ||
| # * website_canonical_url | ||
| # | ||
| # Translators: | ||
| # OCA Transbot <transbot@odoo-community.org>, 2016 | ||
| msgid "" | ||
| msgstr "" | ||
| "Project-Id-Version: Odoo Server 8.0\n" | ||
| "Report-Msgid-Bugs-To: \n" | ||
| "POT-Creation-Date: 2016-11-25 01:52+0000\n" | ||
| "PO-Revision-Date: 2016-11-25 01:52+0000\n" | ||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||
| "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" | ||
| "MIME-Version: 1.0\n" | ||
| "Content-Type: text/plain; charset=UTF-8\n" | ||
| "Content-Transfer-Encoding: \n" | ||
| "Language: da\n" | ||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
|
|
||
| #. module: website_canonical_url | ||
| #: model:ir.model,name:website_canonical_url.model_website | ||
| msgid "Website" | ||
| msgstr "Hjemmeside" |
This file contains hidden or 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,24 @@ | ||
| # Translation of Odoo Server. | ||
| # This file contains the translation of the following modules: | ||
| # * website_canonical_url | ||
| # | ||
| # Translators: | ||
| # Thomas A. Jaeger <tj@jamotion.ch>, 2016 | ||
| msgid "" | ||
| msgstr "" | ||
| "Project-Id-Version: Odoo Server 8.0\n" | ||
| "Report-Msgid-Bugs-To: \n" | ||
| "POT-Creation-Date: 2016-07-07 01:09+0000\n" | ||
| "PO-Revision-Date: 2016-07-07 01:09+0000\n" | ||
| "Last-Translator: Thomas A. Jaeger <tj@jamotion.ch>, 2016\n" | ||
| "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" | ||
| "MIME-Version: 1.0\n" | ||
| "Content-Type: text/plain; charset=UTF-8\n" | ||
| "Content-Transfer-Encoding: \n" | ||
| "Language: de\n" | ||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
|
|
||
| #. module: website_canonical_url | ||
| #: model:ir.model,name:website_canonical_url.model_website | ||
| msgid "Website" | ||
| msgstr "Webseite" |
This file contains hidden or 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,24 @@ | ||
| # Translation of Odoo Server. | ||
| # This file contains the translation of the following modules: | ||
| # * website_canonical_url | ||
| # | ||
| # Translators: | ||
| # OCA Transbot <transbot@odoo-community.org>, 2016 | ||
| msgid "" | ||
| msgstr "" | ||
| "Project-Id-Version: Odoo Server 8.0\n" | ||
| "Report-Msgid-Bugs-To: \n" | ||
| "POT-Creation-Date: 2016-11-25 01:52+0000\n" | ||
| "PO-Revision-Date: 2016-11-25 01:52+0000\n" | ||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||
| "Language-Team: Greek (https://www.transifex.com/oca/teams/23907/el/)\n" | ||
| "MIME-Version: 1.0\n" | ||
| "Content-Type: text/plain; charset=UTF-8\n" | ||
| "Content-Transfer-Encoding: \n" | ||
| "Language: el\n" | ||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
|
|
||
| #. module: website_canonical_url | ||
| #: model:ir.model,name:website_canonical_url.model_website | ||
| msgid "Website" | ||
| msgstr "Ιστότοπος" |
This file contains hidden or 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,24 @@ | ||
| # Translation of Odoo Server. | ||
| # This file contains the translation of the following modules: | ||
| # * website_canonical_url | ||
| # | ||
| # Translators: | ||
| # Kostas Goutoudis <goutoudis@gmail.com>, 2016 | ||
| msgid "" | ||
| msgstr "" | ||
| "Project-Id-Version: Odoo Server 8.0\n" | ||
| "Report-Msgid-Bugs-To: \n" | ||
| "POT-Creation-Date: 2016-07-07 01:09+0000\n" | ||
| "PO-Revision-Date: 2016-07-07 01:09+0000\n" | ||
| "Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2016\n" | ||
| "Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" | ||
| "MIME-Version: 1.0\n" | ||
| "Content-Type: text/plain; charset=UTF-8\n" | ||
| "Content-Transfer-Encoding: \n" | ||
| "Language: el_GR\n" | ||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
|
|
||
| #. module: website_canonical_url | ||
| #: model:ir.model,name:website_canonical_url.model_website | ||
| msgid "Website" | ||
| msgstr "Ιστότοπος" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How can I test this please?
I go to runbot in Odoo without this module and:
I go to this runbot with this module and:
So how can I test what you say here?
Thank you!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Look for a "link rel=canonical" tag in the html source (in the head part).
You're right, the README could be more explanatory