From a629ceb04ad33e1e81300703d00c93cf06fa5838 Mon Sep 17 00:00:00 2001
From: Aungkokolin1997
Date: Tue, 15 Nov 2022 10:06:50 +0630
Subject: [PATCH] [UPD] auth_signup_verify_email
---
auth_signup_verify_email/README.rst | 10 +++++-----
auth_signup_verify_email/static/description/index.html | 6 +++---
auth_signup_verify_email/tests/test_verify_email.py | 2 +-
.../odoo/addons/l10n_jp_address_layout | 1 +
setup/l10n_jp_address_layout/setup.py | 6 ++++++
5 files changed, 16 insertions(+), 9 deletions(-)
create mode 120000 setup/l10n_jp_address_layout/odoo/addons/l10n_jp_address_layout
create mode 100644 setup/l10n_jp_address_layout/setup.py
diff --git a/auth_signup_verify_email/README.rst b/auth_signup_verify_email/README.rst
index dba820b..98ef9d5 100644
--- a/auth_signup_verify_email/README.rst
+++ b/auth_signup_verify_email/README.rst
@@ -14,13 +14,13 @@ Verify email at signup
: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/14.0/auth_signup_verify_email
+ :target: https://github.com/OCA/server-auth/tree/15.0/auth_signup_verify_email
: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-14-0/server-auth-14-0-auth_signup_verify_email
+ :target: https://translation.odoo-community.org/projects/server-auth-15-0/server-auth-15-0-auth_signup_verify_email
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
- :target: https://runbot.odoo-community.org/runbot/251/14.0
+ :target: https://runbot.odoo-community.org/runbot/251/15.0
:alt: Try me on Runbot
|badge1| |badge2| |badge3| |badge4| |badge5|
@@ -66,7 +66,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 smashing it by providing a detailed and welcomed
-`feedback `_.
+`feedback `_.
Do not contact contributors directly about support or help with technical issues.
@@ -101,6 +101,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_signup_verify_email/static/description/index.html b/auth_signup_verify_email/static/description/index.html
index a134df7..a61da79 100644
--- a/auth_signup_verify_email/static/description/index.html
+++ b/auth_signup_verify_email/static/description/index.html
@@ -367,7 +367,7 @@ Verify email at signup
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
-

+

This module extends the functionality of public sign up to force users to
provide a valid email address.
To achieve this, users are not required to provide a password at
@@ -416,7 +416,7 @@
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 smashing it by providing a detailed and welcomed
-feedback.
+feedback.
Do not contact contributors directly about support or help with technical issues.
@@ -445,7 +445,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/auth_signup_verify_email/tests/test_verify_email.py b/auth_signup_verify_email/tests/test_verify_email.py
index 8bb3060..adbe216 100644
--- a/auth_signup_verify_email/tests/test_verify_email.py
+++ b/auth_signup_verify_email/tests/test_verify_email.py
@@ -44,6 +44,6 @@ def test_bad_email(self):
@mute_logger("odoo.addons.auth_signup_verify_email.controllers.main")
def test_good_email(self):
"""Test acceptance of good emails."""
- self.data["login"] = "good@example.com"
+ self.data["login"] = "contributors@odoo-community.org"
doc = self.html_doc(data=self.data)
self.assertTrue(doc.xpath('//p[@class="alert alert-success"]'))
diff --git a/setup/l10n_jp_address_layout/odoo/addons/l10n_jp_address_layout b/setup/l10n_jp_address_layout/odoo/addons/l10n_jp_address_layout
new file mode 120000
index 0000000..546cd6f
--- /dev/null
+++ b/setup/l10n_jp_address_layout/odoo/addons/l10n_jp_address_layout
@@ -0,0 +1 @@
+../../../../l10n_jp_address_layout
\ No newline at end of file
diff --git a/setup/l10n_jp_address_layout/setup.py b/setup/l10n_jp_address_layout/setup.py
new file mode 100644
index 0000000..28c57bb
--- /dev/null
+++ b/setup/l10n_jp_address_layout/setup.py
@@ -0,0 +1,6 @@
+import setuptools
+
+setuptools.setup(
+ setup_requires=['setuptools-odoo'],
+ odoo_addon=True,
+)