mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-18 07:52:04 +02:00
- add missing rpc addon (auto_install, required by server_wide_modules)
- add __init__.py -> init.py symlink for odoo package importability
- re-export image_process from odoo.tools (needed by web_editor)
- add backward-compatible slug/unslug functions in http_routing
🤖 assisted by claude
21 lines
1,005 B
Python
21 lines
1,005 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
# ruff: noqa: F401
|
|
|
|
from . import constants
|
|
from . import urls
|
|
from .parse_version import parse_version
|
|
from .cache import ormcache, ormcache_context
|
|
from .config import config
|
|
from .float_utils import float_compare, float_is_zero, float_repr, float_round, float_split, float_split_str
|
|
from .func import classproperty, conditional, lazy, lazy_classproperty, reset_cached_properties
|
|
from .i18n import format_list, py_to_js_locale
|
|
from .json import json_default
|
|
from .mail import *
|
|
from .misc import *
|
|
from .query import Query
|
|
from .sql import *
|
|
from .translate import _, html_translate, xml_translate, LazyTranslate
|
|
from .xml_utils import cleanup_xml_node, load_xsd_files_from_url, validate_xml_from_attachment
|
|
from .convert import convert_csv_import, convert_file, convert_sql_import, convert_xml_import
|
|
from .set_expression import SetDefinitions
|
|
from .image import image_process, image_data_uri, base64_to_image, image_to_base64
|