- Sep 17, 2023
-
-
Odoo Translation Bot authored
-
- Aug 27, 2023
-
-
Odoo Translation Bot authored
-
- Aug 06, 2023
-
-
Odoo Translation Bot authored
-
- Jul 30, 2023
-
-
Odoo Translation Bot authored
-
- Jul 23, 2023
-
-
Odoo Translation Bot authored
-
- Jul 16, 2023
-
-
Odoo Translation Bot authored
-
- Mar 20, 2023
-
-
Martin Trigaux authored
They dates from < 2027 and are quite outdated. Favour the nl translation instead. n_BE is not on Transifex so it was not possible to correct bad translations. closes odoo/odoo#115798 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Dec 19, 2022
-
-
Martin Trigaux authored
closes odoo/odoo#108071 Related: odoo/enterprise#35036 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- May 25, 2022
-
-
Raphael Collet authored
closes odoo/odoo#87527 Related: odoo/upgrade#3497 Related: odoo/enterprise#26939 Signed-off-by:
Raphael Collet <rco@odoo.com>
-
- Mar 22, 2022
-
-
Abdelouahab (abla) authored
To reproduce ============ - Using ldap server with Microsoft Active Directory - Set up ldap authentication on Odoo - Trying to log with a username/password from ldap on Odoo doesn't work Purpose ======= Because referral chasing is enabled by default, python-ldap ends up requesting a completely different unrelated server. Specification ============= To solve the issue, a system parameter `disable_ldap_chase_ref` must be created to have the possibility to disable referral chasing by setting its value to `True`. opw-2724800 closes odoo/odoo#86993 X-original-commit: f40a98ee Signed-off-by:
Olivier Dony <odo@odoo.com> Signed-off-by:
abla001 <abla@odoo.com>
-
- Jul 26, 2021
-
-
Xavier-Do authored
The license is missing in most enterprise manifest so the decision was taken to make it explicit in all cases. When not defined, a warning will be triggered starting from 14.0 when falling back on the default LGPL-3. closes odoo/odoo#74245 Related: odoo/design-themes#48 Related: odoo/enterprise#19862 Signed-off-by:
Xavier Dollé (xdo) <xdo@odoo.com>
-
- Jul 12, 2021
-
-
Martin Trigaux authored
Without demo data closes odoo/odoo#73560 X-original-commit: 802e46541117573e028b711ea33dad9df9075a39 Related: odoo/enterprise#19602 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Jun 21, 2021
-
-
MANALIMALPANI authored
In order to ensure consistent results of all error conditions returned by the LDAP server, the _authenticate() method should return `False` for every kind of exception, not just for INVALID_CREDENTIALS. This is not actually relevant in 12.0 as the result is exactly the same, due to the way the `entry` variable is being initialized, but it will make the code path "visibly consistent" across all supported versions closes odoo/odoo#72484 X-original-commit: 24a3f669 Signed-off-by:
Olivier Dony (odo) <odo@openerp.com>
-
- May 11, 2021
-
-
Martin Trigaux authored
closes odoo/odoo#70673 X-original-commit: bcb9ff784e44462384b0a43a0a23eed7a1111bc5 Related: odoo/enterprise#18269 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Jan 28, 2021
-
-
Éloi Rivard authored
Before this commit, the ldap filter can only contain a single placeholder, and thus the `login` can only be matched against a single LDAP attribute. This change allows matching the `login` against multiple LDAP attributes e.g. checking against either an email or a uid: (|(mail=%s)(uid=%s)) closes odoo/odoo#62134 Signed-off-by:
Olivier Dony (odo) <odo@openerp.com>
-
- Jan 12, 2021
-
-
Martin Trigaux authored
closes odoo/odoo#64393 X-original-commit: eaf7ec38b2f13b044768ccb457c5523cd24753f6 Related: odoo/enterprise#15693 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Aug 15, 2020
-
-
Olivier Dony authored
Prevent non-interactive RPC access when TOTP is enabled, also via external auth services.
-
- Aug 14, 2020
-
-
Xavier Morel authored
Allows accessing various keys, especially whether this is an interactive login or not. Also have the xml-rpc `login` delegate to `authenticate` instead of having its own half-assed implementation. And remove some dead code: as far as I can tell, Session.authenticate is never called with a uid.
-
- Apr 24, 2020
-
-
Denis Ledoux authored
- A user using ldap to sign in can now changes his password, providing hid old password. - When the ldap password is changed, empty the possible value for the password set in database so it can no longer be used. - Usually, in all res.users methods auth_ldap replaces, we first try to call `super` before fallbacking to ldap if the call to super fails. e.g. when authenticating, we first check the regular (super) credentials, before fallbacking to ldap if it fails. In this case, we do the opposite on purpose, to give the priority to ldap in case a user changes of password. e.g. a user has the same password in ldap and in database, when he changes, we rather like changing the ldap password and then empty the internal password. closes odoo/odoo#50144 X-original-commit: 8bff93fe Signed-off-by:
Olivier Dony (odo) <odo@openerp.com> Signed-off-by:
Denis Ledoux (dle) <dle@odoo.com>
-
- Mar 05, 2020
-
-
Yannick Tivisse authored
Purpose ======= The current kanban view is messy. It is difficult to identify which apps are installed or not. The user can completely miss a module that might have interested him. A search panel would make things way more readable. closes odoo/odoo#44401 Taskid: 2181557 Related: odoo/enterprise#8144 Related: odoo/upgrade#879 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
- Jan 22, 2020
-
-
Martin Trigaux authored
At 795c7b0a the external dependencies was changed from trying to import 'ldap' to checking than 'pyldap' package was installed. The problem is that pyldap is a unmaintained library that should no longer be used, as explained on the package page: https://pypi.org/project/pyldap/ "The pyldap fork was merged back into python-ldap, and released as python-ldap 3.0.0." Having pyldap version >= 3.0 installs python-ldap automatically and will not cause any issue. The Debian control file package name is adapted to use the latest. The "ldap" externalm dependency defined in __manifest__.py will cause pkg_resources.get_distribution() to fail in both case ("python-lap" or "pyldap"), but the "import" fallback will succeed. For that reason, the log warning is turned into a log info. closes odoo/odoo#43769 Note: This library should be replaced by the pure python "ldap3" library. X-original-commit: 1afd0ccf Signed-off-by:
Christophe Monniez (moc) <moc@odoo.com>
-
- Dec 10, 2019
-
-
Martin Trigaux authored
Followup of a425695e The terms were back in 12.0 Courtesy of Juan José Scarafía closes odoo/odoo#41624 X-original-commit: 85d0c700 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Nov 25, 2019
-
-
Holger Brunn authored
Non-ascii characters in LDAP don't cause a python unicode string in returned ldap entries, this commit fixes this. Before this commit, further string operations on ldap values with non-ascii characters fail. closes odoo/odoo#40761 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Oct 07, 2019
-
-
Odoo Translation Bot authored
-
- Oct 01, 2019
-
-
Odoo Translation Bot authored
-
- Sep 29, 2019
-
-
Odoo Translation Bot authored
-
- Sep 25, 2019
-
-
Victor Feyens authored
closes odoo/odoo#35754 Signed-off-by:
Damien Bouvy (dbo) <dbo@odoo.com>
-
- Sep 15, 2019
-
-
Odoo Translation Bot authored
-
Odoo Translation Bot authored
-
- Sep 03, 2019
-
-
Jorge Pinna Puissant authored
Slovenian language, as many others languages, is not present in the beta/master projects in Transifex. For some reason, Transiflex removed all current translations, this was already fixed in 12, but as there are not automatic forward-port for translations, this is a manual forward-port. opw-2060055 closes odoo/odoo#36374 Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
- Sep 01, 2019
-
-
Odoo Translation Bot authored
-
Odoo Translation Bot authored
-
Odoo Translation Bot authored
-
- Aug 25, 2019
-
-
Odoo Translation Bot authored
-
- Sep 01, 2019
-
-
Odoo Translation Bot authored
-
- Aug 18, 2019
-
-
Odoo Online authored
-
Odoo Translation Bot authored
-
- Aug 13, 2019
-
-
Martin Trigaux authored
-
- Aug 11, 2019
-
-
Odoo Translation Bot authored
-
Odoo Translation Bot authored
-