oca-travis
5aa4aeb6f9
[UPD] Update base_export_manager.pot
6 years ago
oca-travis
e886229eeb
[UPD] Update base_custom_info.pot
6 years ago
oca-travis
cfd1b1ad6b
[UPD] Update base_cron_exclusion.pot
6 years ago
oca-travis
2169e53bd8
[UPD] Update auto_backup.pot
6 years ago
oca-travis
788c5e9e32
[UPD] Update auth_totp_password_security.pot
6 years ago
oca-travis
fc95888d20
[UPD] Update auth_totp.pot
6 years ago
oca-travis
baf59ff6bc
[UPD] Update auth_supplier.pot
6 years ago
oca-travis
37514ad267
[UPD] Update auth_signup_verify_email.pot
6 years ago
oca-travis
0a5f86ffb8
[UPD] Update auth_session_timeout.pot
6 years ago
oca-travis
f9716ff8ae
[UPD] Update auth_from_http_remote_user.pot
6 years ago
oca-travis
d67214cc95
[UPD] Update auth_brute_force.pot
6 years ago
oca-travis
210c5115c1
[UPD] Update auditlog.pot
6 years ago
oca-travis
f293c2a0a7
[UPD] Update attachment_base_synchronize.pot
6 years ago
oca-travis
c2b8f32b98
[UPD] Update admin_technical_features.pot
6 years ago
Stéphane Bidoul (ACSONE)
c68b7dd129
[FIX] nl*.po syntax errors
6 years ago
Stéphane Bidoul (ACSONE)
9b8ced453a
[FIX] nl*.po syntax errors
6 years ago
OCA Git Bot
784154efb9
[UPD] addons table in README.md [ci skip]
6 years ago
Jordi Ballester Alomar
30e3d8caf9
Merge pull request #1299 from Eficent/9.0-fix-base_tier_validation-need_validation
[FIX] base_tier_validation: _compute_need_validation (rec vs self)
6 years ago
mreficent
1a5f972b1f
[FIX] base_tier_validation: _compute_need_validation (rec vs self)
6 years ago
OCA Git Bot
d38201fc12
[UPD] README.rst
6 years ago
Stéphane Bidoul (ACSONE)
06610cc38d
remove obsolete .pot files [ci skip]
7 years ago
Thomas Binsfeld
33ed87ebf7
[REF] Mail Environment: remove dependency on server_environment_files
In the same logic as https://github.com/OCA/server-env/issues/10
7 years ago
Pedro M. Baeza
6f5b5a9feb
Merge pull request #1274 from acsone/9.0-server_environment_remove_dependency_tbi
[9.0] [REF] Server Environment: remove dependency on server_environment_files
7 years ago
andreparames
c305dc1307
keychain: add _get_password() method to backend
7 years ago
andreparames
ffd674ff79
[IMP] Cache account in keychain backend
This commit creates a computed field on the keychain backend, so
that repeated calls to _get_keychain_account() will return the
value from the ORM cache rather than repeating the query each time.
7 years ago
andreparames
349986a78e
[FIX] Keychain backend test
7 years ago
Laurent Mignon (ACSONE)
68c7116d49
[IMP] keychain: get_password must not be accessible from outside
7 years ago
Mourad Elhadj Mimoune
7686d2f950
[FIX] OCA reviews
7 years ago
Mourad Elhadj Mimoune
d29388342e
[FIX] split keychain backend model and test into 2 files
7 years ago
Mourad Elhadj Mimoune
2979b29faf
[FIX] add name to keychain.backend & add test
7 years ago
Sébastien BEAU
155622da36
[IMP] add a keychain backend abstract model, the aim is to simplify the integration of keychain when you already have /need the concept of backend
8 years ago
MonsieurB
2ef085580c
set test
8 years ago
OCA Git Bot
b716ece13a
[UPD] addons table in README.md [ci skip]
7 years ago
Thomas Binsfeld
a2fb93ed53
[REF] Server Environment: remove dependency on server_environement_files
From https://github.com/OCA/server-env/issues/10
7 years ago
Stéphane Bidoul (ACSONE)
1fff314a6d
[FIX] rst syntax errors
7 years ago
Stéphane Bidoul (ACSONE)
dc4a97747b
module_auto_update: 9.0.2.0.3
7 years ago
Stéphane Bidoul (ACSONE)
f32d063b0c
[UPD] README.rst
7 years ago
Stéphane Bidoul (ACSONE)
0f7279965b
module_auto_update: readme fragments
7 years ago
Stéphane Bidoul (ACSONE)
0c9701d3de
module_auto_update: sbidoul as maintainer
Plus Stable development status
7 years ago
Denis Roussel
3402a02f13
[10.0][FIX] module_auto_update: Don't set 'to upgrade' on void recordset modules
7 years ago
OCA Git Bot
c70d919904
[UPD] addons table in README.md [ci skip]
7 years ago
Pedro M. Baeza
18a77ea167
Merge pull request #1258 from Tecnativa/9.0-auth_brute_force
[FIX] auth_brute_force: Avoid storing false login attempts
7 years ago
Pedro M. Baeza
2e3a7bed4e
Merge pull request #1148 from Tecnativa/9.0-html_image_url_extractor-test_no_matter_exception
[FIX] html_image_url_extractor: Do not test the specific exception
7 years ago
Jairo Llopis
40ec9fc4ee
[FIX] auth_brute_force: Avoid storing false login attempts
In Odoo v9, every request calls `res.users.check()`, which stores one authentication attempt per request, which is false.
Besides, it easily leads to hitting ip-api.com rate limits, so now that API is only asked when seeing in form view (simply by setting the computed field as not stored).
Also, form view was hidden, so it's now visible.
7 years ago
OCA Git Bot
f61cb5ac0b
[ADD] setup.py
7 years ago
OCA Git Bot
e2f4be20d3
[UPD] addons table in README.md [ci skip]
7 years ago
Pedro M. Baeza
f5189f8f0c
Merge pull request #1255 from Tecnativa/9.0-auth_brute_force
[MIG] auth_brute_force: Backport from v10
7 years ago
Jairo Llopis
883a21fc11
[MIG] auth_brute_force: Backport from v10
Odoo v9 auth methods usually violate both old and new api; they just only work in old api, so I had to adapt some tests to use it instead.
Normal backport outside of that.
7 years ago
Jairo Llopis
6ad9be7acc
[FIX] auth_brute_force: Fix addon requirement computation ( #1251 )
Include HACK for https://github.com/odoo/odoo/pull/24833 , which explains the false positive problem we were having here: an addon being importable doesn't mean it is installed.
7 years ago
Jairo Llopis
a54882bf07
[FIX] auth_brute_force: Small typos
- The `whitelisted` field needs to exist in view to be usable.
- The correct class is `decoration-danger` for tree views.
7 years ago