Browse Source
[MIG] auth_user_insensitive: Migrate Module to OCA
[MIG] auth_user_insensitive: Migrate Module to OCA
* Upgrade module to 10.0 and bring up to OCA standardspull/826/head
Ted Salmon
8 years ago
No known key found for this signature in database
GPG Key ID: 1E92222DD9AF3435
11 changed files with 98 additions and 12815 deletions
-
56auth_user_insensitive/README.rst
-
3auth_user_insensitive/__init__.py
-
18auth_user_insensitive/__manifest__.py
-
2auth_user_insensitive/models/__init__.py
-
17auth_user_insensitive/models/res_users.py
-
2auth_user_insensitive/tests/__init__.py
-
20auth_user_insensitive/tests/test_res_users.py
-
32res_users_case_insensitive/README.rst
-
18res_users_case_insensitive/__openerp__.py
-
BINres_users_case_insensitive/static/description/icon.png
-
12745res_users_case_insensitive/static/description/icon.svg
@ -0,0 +1,56 @@ |
|||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg |
|||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html |
|||
:alt: License: AGPL-3 |
|||
|
|||
======================= |
|||
Case Insensitive Logins |
|||
======================= |
|||
|
|||
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. |
|||
|
|||
Installation |
|||
============ |
|||
|
|||
Install this module as you would any other. No further configuration is |
|||
required. |
|||
|
|||
Bug Tracker |
|||
=========== |
|||
|
|||
Bugs are tracked on `GitHub Issues |
|||
<https://github.com/OCA/server-tools/issues>`_. In case of trouble, please |
|||
check there if your issue has already been reported. If you spotted it first, |
|||
help us smash it by providing detailed and welcomed feedback. |
|||
|
|||
Credits |
|||
======= |
|||
|
|||
Images |
|||
------ |
|||
|
|||
* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_. |
|||
|
|||
Contributors |
|||
------------ |
|||
|
|||
* Dave Lasley <dave@laslabs.com> |
|||
* Ted Salmon <tsalmon@laslabs.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. |
@ -1,6 +1,5 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2015-TODAY LasLabs Inc. |
|||
# Copyright 2015-2017 LasLabs Inc. |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from . import models |
|||
from . import tests |
@ -0,0 +1,18 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright 2015-2017 LasLabs Inc. |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
{ |
|||
"name": "Case Insensitive Logins", |
|||
"summary": "Makes the user login field case insensitive", |
|||
"version": "10.0.1.0.0", |
|||
"category": "Authentication", |
|||
"website": "https://laslabs.com/", |
|||
"author": "LasLabs, Odoo Community Association (OCA)", |
|||
"license": "AGPL-3", |
|||
"application": False, |
|||
'installable': True, |
|||
"depends": [ |
|||
"mail", |
|||
], |
|||
"data": [], |
|||
} |
@ -1,5 +1,5 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2015-TODAY LasLabs Inc. |
|||
# Copyright 2015-2017 LasLabs Inc. |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from . import res_users |
@ -1,5 +1,5 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2015-TODAY LasLabs Inc. |
|||
# Copyright 2015-2017 LasLabs Inc. |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from . import test_res_users |
@ -1,32 +0,0 @@ |
|||
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg |
|||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html |
|||
:alt: License: AGPL-3 |
|||
|
|||
========================== |
|||
Case Insensitive Usernames |
|||
========================== |
|||
|
|||
This module extends the functionality of res.users to make logins case |
|||
insensitive. |
|||
|
|||
Credits |
|||
======= |
|||
|
|||
Images |
|||
------ |
|||
|
|||
* LasLabs: `Icon <https://repo.laslabs.com/projects/TEM/repos/odoo-module_template/browse/module_name/static/description/icon.svg?raw>`_. |
|||
|
|||
Contributors |
|||
------------ |
|||
|
|||
* Firstname Lastname <email.address@laslabs.com> |
|||
|
|||
Maintainer |
|||
---------- |
|||
|
|||
.. image:: https://laslabs.com/logo.png |
|||
:alt: LasLabs Inc. |
|||
:target: https://laslabs.com |
|||
|
|||
This module is maintained by LasLabs Inc. |
@ -1,18 +0,0 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2015-TODAY LasLabs Inc. |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
{ |
|||
"name": "Case Insensitive Logins", |
|||
"summary": "Makes the login field of res.users case insensitive.", |
|||
"version": "9.0.1.0.0", |
|||
"category": "Base", |
|||
'depends': [ |
|||
'mail', # Required if shares branch with password_security module |
|||
], |
|||
"website": "https://laslabs.com/", |
|||
"author": "LasLabs", |
|||
"license": "AGPL-3", |
|||
"application": False, |
|||
"installable": True, |
|||
} |
Before Width: 600 | Height: 518 | Size: 10 KiB |
12745
res_users_case_insensitive/static/description/icon.svg
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
Write
Preview
Loading…
Cancel
Save
Reference in new issue