diff --git a/auth_user_case_insensitive/README.rst b/auth_user_case_insensitive/README.rst
index 20682dd40c..dfbd799ad0 100644
--- a/auth_user_case_insensitive/README.rst
+++ b/auth_user_case_insensitive/README.rst
@@ -17,20 +17,20 @@ Case Insensitive Logins
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--auth-lightgray.png?logo=github
- :target: https://github.com/OCA/server-auth/tree/16.0/auth_user_case_insensitive
+ :target: https://github.com/OCA/server-auth/tree/17.0/auth_user_case_insensitive
:alt: OCA/server-auth
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
- :target: https://translation.odoo-community.org/projects/server-auth-16-0/server-auth-16-0-auth_user_case_insensitive
+ :target: https://translation.odoo-community.org/projects/server-auth-17-0/server-auth-17-0-auth_user_case_insensitive
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
- :target: https://runboat.odoo-community.org/builds?repo=OCA/server-auth&target_branch=16.0
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/server-auth&target_branch=17.0
:alt: Try me on Runboat
|badge1| |badge2| |badge3| |badge4| |badge5|
This module makes user logins case insensitive. It also overwrites the
-search method to allow these case insensitive logins to work on a database
-that previously had case sensitive logins.
+search method to allow these case insensitive logins to work on a
+database that previously had case sensitive logins.
**Table of contents**
@@ -40,15 +40,18 @@ that previously had case sensitive logins.
Installation
============
-Install this module as you would any other. No further configuration is required.
+Install this module as you would any other. No further configuration is
+required.
-Note that upon installation the existing logins will all be converted to lowercase.
+Note that upon installation the existing logins will all be converted to
+lowercase.
Usage
=====
-.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
- :alt: Steps to test the module
+|Steps to test the module|
+
+.. |Steps to test the module| image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:target: https://runbot.odoo-community.org/runbot/167/11.0
Bug Tracker
@@ -57,7 +60,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues `_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
-`feedback `_.
+`feedback `_.
Do not contact contributors directly about support or help with technical issues.
@@ -65,20 +68,20 @@ Credits
=======
Authors
-~~~~~~~
+-------
* LasLabs
Contributors
-~~~~~~~~~~~~
+------------
-* Dave Lasley
-* Ted Salmon
-* Mayank Gosai
-* Chandresh Thakkar
+- Dave Lasley
+- Ted Salmon
+- Mayank Gosai
+- Chandresh Thakkar
Maintainers
-~~~~~~~~~~~
+-----------
This module is maintained by the OCA.
@@ -90,6 +93,6 @@ 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.
-This module is part of the `OCA/server-auth `_ project on GitHub.
+This module is part of the `OCA/server-auth `_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/auth_user_case_insensitive/models/res_users.py b/auth_user_case_insensitive/models/res_users.py
index 50a8cb11e1..3eb838f7f5 100644
--- a/auth_user_case_insensitive/models/res_users.py
+++ b/auth_user_case_insensitive/models/res_users.py
@@ -6,7 +6,6 @@
class ResUsers(models.Model):
-
_inherit = "res.users"
login = fields.Char(help="Used to log into the system. Case insensitive.")
diff --git a/auth_user_case_insensitive/pyproject.toml b/auth_user_case_insensitive/pyproject.toml
new file mode 100644
index 0000000000..4231d0cccb
--- /dev/null
+++ b/auth_user_case_insensitive/pyproject.toml
@@ -0,0 +1,3 @@
+[build-system]
+requires = ["whool"]
+build-backend = "whool.buildapi"
diff --git a/auth_user_case_insensitive/readme/CONTRIBUTORS.md b/auth_user_case_insensitive/readme/CONTRIBUTORS.md
new file mode 100644
index 0000000000..5a8a2045f1
--- /dev/null
+++ b/auth_user_case_insensitive/readme/CONTRIBUTORS.md
@@ -0,0 +1,4 @@
+- Dave Lasley \<\>
+- Ted Salmon \<\>
+- Mayank Gosai \<\>
+- Chandresh Thakkar \<\>
diff --git a/auth_user_case_insensitive/readme/CONTRIBUTORS.rst b/auth_user_case_insensitive/readme/CONTRIBUTORS.rst
deleted file mode 100644
index 7b563facde..0000000000
--- a/auth_user_case_insensitive/readme/CONTRIBUTORS.rst
+++ /dev/null
@@ -1,4 +0,0 @@
-* Dave Lasley
-* Ted Salmon
-* Mayank Gosai
-* Chandresh Thakkar
diff --git a/auth_user_case_insensitive/readme/DESCRIPTION.rst b/auth_user_case_insensitive/readme/DESCRIPTION.md
similarity index 71%
rename from auth_user_case_insensitive/readme/DESCRIPTION.rst
rename to auth_user_case_insensitive/readme/DESCRIPTION.md
index d91984716b..5ead8d567c 100644
--- a/auth_user_case_insensitive/readme/DESCRIPTION.rst
+++ b/auth_user_case_insensitive/readme/DESCRIPTION.md
@@ -1,3 +1,3 @@
This module makes user logins case insensitive. It also overwrites the
-search method to allow these case insensitive logins to work on a database
-that previously had case sensitive logins.
+search method to allow these case insensitive logins to work on a
+database that previously had case sensitive logins.
diff --git a/auth_user_case_insensitive/readme/INSTALL.rst b/auth_user_case_insensitive/readme/INSTALL.md
similarity index 77%
rename from auth_user_case_insensitive/readme/INSTALL.rst
rename to auth_user_case_insensitive/readme/INSTALL.md
index 16f1d1cdd8..f81f487eac 100644
--- a/auth_user_case_insensitive/readme/INSTALL.rst
+++ b/auth_user_case_insensitive/readme/INSTALL.md
@@ -1,3 +1,5 @@
-Install this module as you would any other. No further configuration is required.
+Install this module as you would any other. No further configuration is
+required.
-Note that upon installation the existing logins will all be converted to lowercase.
+Note that upon installation the existing logins will all be converted to
+lowercase.
diff --git a/auth_user_case_insensitive/readme/USAGE.md b/auth_user_case_insensitive/readme/USAGE.md
new file mode 100644
index 0000000000..d13d3f3efb
--- /dev/null
+++ b/auth_user_case_insensitive/readme/USAGE.md
@@ -0,0 +1 @@
+[](https://runbot.odoo-community.org/runbot/167/11.0)
diff --git a/auth_user_case_insensitive/readme/USAGE.rst b/auth_user_case_insensitive/readme/USAGE.rst
deleted file mode 100644
index cbf2a7fcbe..0000000000
--- a/auth_user_case_insensitive/readme/USAGE.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
- :alt: Steps to test the module
- :target: https://runbot.odoo-community.org/runbot/167/11.0
diff --git a/auth_user_case_insensitive/static/description/index.html b/auth_user_case_insensitive/static/description/index.html
index db0b96a9f1..7bd5a73ee8 100644
--- a/auth_user_case_insensitive/static/description/index.html
+++ b/auth_user_case_insensitive/static/description/index.html
@@ -369,10 +369,10 @@ Case Insensitive Logins
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:ed83d6389739201d4062cd5ecfd9721cac3d2de46b63d9d0e14f7ecd8aa4d96f
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
-

+

This module makes user logins case insensitive. It also overwrites the
-search method to allow these case insensitive logins to work on a database
-that previously had case sensitive logins.
+search method to allow these case insensitive logins to work on a
+database that previously had case sensitive logins.
Table of contents
@@ -389,19 +389,21 @@ Case Insensitive Logins
-
Install this module as you would any other. No further configuration is required.
-
Note that upon installation the existing logins will all be converted to lowercase.
+
Install this module as you would any other. No further configuration is
+required.
+
Note that upon installation the existing logins will all be converted to
+lowercase.
-

+

Bugs are tracked on GitHub Issues.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
-feedback.
+
feedback.
Do not contact contributors directly about support or help with technical issues.
@@ -428,7 +430,7 @@
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.
-
This module is part of the OCA/server-auth project on GitHub.
+
This module is part of the OCA/server-auth project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/pandoc-3.1.11.1-1-amd64.deb b/pandoc-3.1.11.1-1-amd64.deb
new file mode 100644
index 0000000000..1af3187f70
Binary files /dev/null and b/pandoc-3.1.11.1-1-amd64.deb differ