18 lines
620 B
Python
18 lines
620 B
Python
{
|
|
'name': 'HTTP Routing Safe URL',
|
|
'version': '19.0.1.0.0',
|
|
'summary': 'Prevent crash on URLs with dot segments',
|
|
'description': """
|
|
This module patches IrHttp._url_localized to sanitize URLs containing dot segments (. or ..).
|
|
Strict validation in odoo.tools.urls.urljoin raises ValueError for these segments,
|
|
which can cause crashes during error handling or canonical URL generation.
|
|
""",
|
|
'author': 'Suherdy Yacob',
|
|
'category': 'Website',
|
|
'depends': ['http_routing'],
|
|
'data': [],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'license': 'LGPL-3',
|
|
}
|