Initial commit: OCA Technical packages (595 packages)

This commit is contained in:
Ernad Husremovic 2025-08-29 15:43:03 +02:00
commit 2cc02aac6e
24950 changed files with 2318079 additions and 0 deletions

View file

@ -0,0 +1,24 @@
######
Models
######
.. _api-backend-model:
*************
Backend Model
*************
.. autoclass:: connector.models.backend_model.ConnectorBackend
:members:
:undoc-members:
:show-inheritance:
.. _api-binding-model:
*************
Binding Model
*************
.. autoclass:: connector.models.backend_model.ExternalBinding
:show-inheritance:

View file

@ -0,0 +1,13 @@
########
Channels
########
This is the API documentation for the job channels and the
scheduling mechanisms of the job runner.
These classes are not intended for use by module developers.
.. automodule:: odoo.addons.queue_job.jobrunner.channels
:members:
:undoc-members:
:show-inheritance:

View file

@ -0,0 +1,165 @@
.. _api-component:
##########
Components
##########
Components are the blocks allowing to build a flexible and
well decoupled code. They are based on the ``component`` addon, which
can as well be used separately.
***************
Core Components
***************
.. automodule:: connector.components.core
:members:
:undoc-members:
:exclude-members: _module
:show-inheritance:
:private-members:
********************
Connector Components
********************
.. automodule:: connector.components.binder
:members:
:undoc-members:
:exclude-members: _module
:show-inheritance:
:private-members:
.. automodule:: connector.components.mapper
:members:
:member-order: groupwise
:exclude-members: MappingDefinition, Mapper, ImportMapper, ExportMapper, MapChild, ImportMapChild, ExportMapChild
:show-inheritance:
.. autoclass:: Mapper
:members:
:show-inheritance:
.. autoattribute:: _name
.. autoattribute:: _inherit
.. autoattribute:: _usage
.. autoclass:: ImportMapper
:members:
:show-inheritance:
.. autoattribute:: _name
.. autoattribute:: _inherit
.. autoattribute:: _usage
.. autoclass:: ExportMapper
:members:
:show-inheritance:
.. autoattribute:: _name
.. autoattribute:: _inherit
.. autoattribute:: _usage
.. autoclass:: MapChild
:members:
:show-inheritance:
.. autoattribute:: _name
.. autoattribute:: _inherit
.. autoattribute:: _usage
.. autoclass:: ImportMapChild
:members:
:show-inheritance:
.. autoattribute:: _name
.. autoattribute:: _inherit
.. autoattribute:: _usage
.. autoclass:: ExportMapChild
:members:
:show-inheritance:
.. autoattribute:: _name
.. autoattribute:: _inherit
.. autoattribute:: _usage
.. automodule:: connector.components.backend_adapter
:members:
:show-inheritance:
:exclude-members: BackendAdapter, CRUDAdapter
.. autoclass:: BackendAdapter
:members:
:show-inheritance:
.. autoattribute:: _name
.. autoattribute:: _inherit
.. autoattribute:: _usage
.. autoclass:: CRUDAdapter
:members:
:show-inheritance:
.. autoattribute:: _name
.. autoattribute:: _inherit
.. autoattribute:: _usage
.. automodule:: connector.components.synchronizer
:members:
:undoc-members:
:show-inheritance:
:exclude-members: _module
:private-members:
.. automodule:: connector.components.listener
:members:
:undoc-members:
:show-inheritance:
:exclude-members: _module
:private-members:
.. automodule:: connector.components.locker
:members:
:undoc-members:
:show-inheritance:
:exclude-members: _module
:private-members:
***************************
Components Collection Model
***************************
.. automodule:: odoo.addons.component.models.collection
:members:
:undoc-members:
:show-inheritance:
*********************
Components Exceptions
*********************
.. automodule:: odoo.addons.component.exception
:members:
:undoc-members:
:show-inheritance:
********************
Components Internals
********************
Low-level APIs of the Components.
.. automodule:: odoo.addons.component.core
:members:
:undoc-members:
:show-inheritance:
.. automodule:: odoo.addons.component.builder
:members:
:undoc-members:
:show-inheritance:

View file

@ -0,0 +1,26 @@
.. _api-event:
######
Events
######
Events is an implementation of an Observer pattern for Odoo.
**********
Components
**********
.. automodule:: odoo.addons.component_event.components.event
:members:
:show-inheritance:
**********************
Odoo Models Extensions
**********************
.. automodule:: odoo.addons.component_event.models.base
.. autoclass:: Base
:show-inheritance:

View file

@ -0,0 +1,7 @@
Exceptions
==========
.. automodule:: connector.exception
:members:
:undoc-members:
:show-inheritance:

View file

@ -0,0 +1,45 @@
.. _api-queue:
#####
Queue
#####
Models
******
.. automodule:: odoo.addons.queue_job.models.base
:members:
:undoc-members:
:show-inheritance:
.. automodule:: odoo.addons.queue_job.models.queue_job
.. autoclass:: QueueJob
.. autoattribute:: _name
.. autoattribute:: _inherit
***
Job
***
.. automodule:: odoo.addons.queue_job.job
Decorators
==========
.. autofunction:: job
.. autofunction:: related_action
Internals
=========
.. autoclass:: DelayableRecordset
:members:
:undoc-members:
:show-inheritance:
.. autoclass:: Job
:members:
:undoc-members:
:show-inheritance: