├── .copier-answers.yml ├── .editorconfig ├── .github └── workflows │ ├── pre-commit.yml │ ├── stale.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .pylintrc-mandatory ├── .ruff.toml ├── LICENSE ├── README.md ├── checklog-odoo.cfg ├── eslint.config.cjs ├── prettier.config.cjs ├── requirements.txt ├── setup └── _metapackage │ └── pyproject.toml ├── test-requirements.txt ├── web_calendar_slot_duration ├── README.rst ├── __init__.py ├── __manifest__.py ├── demo │ └── scheduled_actions.xml ├── i18n │ ├── de.po │ ├── it.po │ ├── pt_BR.po │ └── web_calendar_slot_duration.pot ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md └── static │ ├── description │ ├── calendar_result.png │ ├── edit_action.png │ ├── icon.png │ └── index.html │ └── src │ └── js │ ├── calendar_common_renderer.esm.js │ └── calendar_model.esm.js ├── web_chatter_position ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── ca.po │ ├── de.po │ ├── es.po │ ├── fr.po │ ├── fr_BE.po │ ├── hr.po │ ├── it.po │ ├── nl.po │ ├── pt_BR.po │ ├── tr.po │ └── web_chatter_position.pot ├── models │ ├── __init__.py │ └── res_users.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── USAGE.md ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ ├── js │ │ └── web_chatter_position.esm.js │ │ └── scss │ │ ├── form_controller.scss │ │ ├── form_renderer.scss │ │ └── form_statusbar.scss └── views │ ├── res_users.xml │ └── web.xml ├── web_company_color ├── README.rst ├── __init__.py ├── __manifest__.py ├── hooks.py ├── i18n │ ├── ca.po │ ├── de.po │ ├── es.po │ ├── fr.po │ ├── hr.po │ ├── it.po │ ├── nl.po │ ├── pt.po │ ├── web_company_color.pot │ └── zh_CN.po ├── models │ ├── __init__.py │ ├── assetsbundle.py │ ├── ir_qweb.py │ └── res_company.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── static │ └── description │ │ ├── icon.png │ │ └── index.html ├── tests │ ├── __init__.py │ └── test_res_company.py ├── utils.py └── view │ ├── assets.xml │ └── res_company.xml ├── web_copy_confirm ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── de.po │ ├── fr.po │ ├── it.po │ └── web_copy_confirm.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── HISTORY.md └── static │ ├── description │ ├── icon.png │ └── index.html │ ├── src │ └── js │ │ └── web_copy_confirm.esm.js │ └── tests │ └── confirm.test.js ├── web_datetime_picker_default_time ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── it.po │ └── web_datetime_picker_default_time.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── CREDITS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md └── static │ ├── description │ ├── icon.png │ └── index.html │ ├── src │ └── js │ │ ├── datepicker.esm.js │ │ └── datetime_field.esm.js │ └── tests │ └── web_datetime_picker_default_time.test.js ├── web_dialog_size ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── de.po │ ├── es.po │ ├── fr.po │ ├── it.po │ ├── nl.po │ ├── tr.po │ ├── web_dialog_size.pot │ └── zh_CN.po ├── models │ ├── __init__.py │ └── ir_config_parameter.py ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── ROADMAP.md ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ ├── js │ │ └── web_dialog_size.esm.js │ │ ├── scss │ │ └── web_dialog_size.scss │ │ └── xml │ │ ├── ExpandButton.xml │ │ ├── select_create_dialog.xml │ │ └── web_dialog_header.xml └── tests │ ├── __init__.py │ └── test_web_dialog_size.py ├── web_disable_export_group ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── es.po │ ├── fr.po │ ├── hr.po │ ├── it.po │ ├── pt.po │ ├── web_disable_export_group.pot │ └── zh_CN.po ├── models │ ├── __init__.py │ ├── ir_http.py │ └── models.py ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── USAGE.md ├── security │ ├── groups.xml │ └── ir.model.access.csv ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ ├── src │ │ └── views │ │ │ └── list │ │ │ └── export_all │ │ │ └── export_all.esm.js │ └── tests │ │ └── tours │ │ └── web_disable_export_group_tour.esm.js └── tests │ ├── __init__.py │ └── test_tour.py ├── web_editor_class_selector ├── README.rst ├── __init__.py ├── __manifest__.py ├── demo │ └── web_editor_class_demo.xml ├── i18n │ ├── it.po │ └── web_editor_class_selector.pot ├── models │ ├── __init__.py │ └── web_editor_class.py ├── pyproject.toml ├── readme │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── security │ └── ir.model.access.csv ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ ├── js │ │ ├── css_selector │ │ │ ├── css_selector.esm.js │ │ │ ├── css_selector.xml │ │ │ └── css_selector_plugin.esm.js │ │ ├── fields │ │ │ └── html_field.esm.js │ │ ├── utils │ │ │ └── utils.esm.js │ │ └── wysiwyg │ │ │ └── wysiwyg.esm.js │ │ └── scss │ │ └── demo_styles.scss └── views │ ├── menus.xml │ └── web_editor_class_views.xml ├── web_editor_disable_chatgpt ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── it.po │ └── web_editor_disable_chatgpt.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── ROADMAP.md ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ ├── src │ │ └── main │ │ │ └── chatgpt │ │ │ └── chatgpt_plugin_patch.esm.js │ └── tests │ │ └── tours │ │ └── html_editor_disable_chatgpt_tour.esm.js └── tests │ ├── __init__.py │ └── test_tours.py ├── web_environment_ribbon ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── ribbon_data.xml ├── i18n │ ├── ca.po │ ├── de.po │ ├── es.po │ ├── fr.po │ ├── hr.po │ ├── it.po │ ├── nl.po │ ├── nl_NL.po │ ├── pt.po │ ├── pt_BR.po │ ├── sl.po │ ├── web_environment_ribbon.pot │ ├── zh.po │ └── zh_CN.po ├── models │ ├── __init__.py │ └── web_environment_ribbon_backend.py ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── USAGE.md ├── static │ ├── description │ │ ├── configure_1.png │ │ ├── icon.png │ │ ├── index.html │ │ └── screenshot.png │ └── src │ │ └── components │ │ └── environment_ribbon │ │ ├── ribbon.css │ │ └── ribbon.esm.js └── tests │ ├── __init__.py │ └── test_environment_ribbon_data.py ├── web_excel_export_dynamic_expand ├── README.rst ├── __init__.py ├── __manifest__.py ├── controllers │ ├── __init__.py │ └── excel_export.py ├── i18n │ ├── it.po │ └── web_excel_export_dynamic_expand.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ └── js │ └── data_export.esm.js ├── web_favicon ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── it.po │ └── web_favicon.pot ├── models │ ├── __init__.py │ └── res_company.py ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── ROADMAP.md ├── static │ └── description │ │ ├── icon.png │ │ └── index.html ├── tests │ ├── __init__.py │ └── test_web_favicon.py └── views │ ├── res_company_views.xml │ └── templates.xml ├── web_filter_header_button ├── README.rst ├── __init__.py ├── __manifest__.py ├── demo │ └── ir_module_module_view.xml ├── i18n │ ├── it.po │ └── web_filter_header_button.pot ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTEXT.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ ├── control_panel │ ├── control_panel.xml │ └── control_panel_patch.esm.js │ ├── filter_button │ ├── filter_button.esm.js │ └── filter_button.xml │ └── search │ ├── search_arch_parser_patch.esm.js │ └── search_model_patch.esm.js ├── web_form_banner ├── README.rst ├── __init__.py ├── __manifest__.py ├── demo │ └── web_form_banner_rule_demo.xml ├── i18n │ ├── it.po │ ├── ja.po │ └── web_form_banner.pot ├── models │ ├── __init__.py │ ├── ir_model.py │ └── web_form_banner_rule.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── security │ └── ir.model.access.csv ├── static │ ├── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── partner_email_rule.png │ │ ├── partner_layout_banner.png │ │ ├── partner_layout_no_banner.png │ │ └── partner_tag_rule.png │ └── src │ │ ├── js │ │ └── web_form_banner.esm.js │ │ └── scss │ │ └── web_form_banner.scss ├── tests │ ├── __init__.py │ └── test_web_form_banner.py └── views │ └── web_form_banner_rule_views.xml ├── web_group_expand ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── ca.po │ ├── de.po │ ├── es.po │ ├── fr.po │ ├── fr_BE.po │ ├── fr_FR.po │ ├── it.po │ ├── nl.po │ ├── pt_BR.po │ └── web_group_expand.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ ├── js │ └── list_controller.esm.js │ └── xml │ └── list_controller.xml ├── web_ir_actions_act_multi ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── es.po │ ├── it.po │ ├── web_ir_actions_act_multi.pot │ └── zh_CN.po ├── models │ ├── __init__.py │ ├── ir_actions.py │ └── ir_model.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── USAGE.md ├── security │ └── ir.model.access.csv └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ └── js │ └── web_ir_actions_act_multi.esm.js ├── web_ir_actions_act_window_message ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── ar.po │ ├── de.po │ ├── es.po │ ├── eu.po │ ├── fi.po │ ├── fr.po │ ├── hr.po │ ├── it.po │ ├── nl.po │ ├── nl_NL.po │ ├── pt.po │ ├── pt_BR.po │ ├── ro.po │ ├── sl.po │ ├── tr.po │ └── web_ir_actions_act_window_message.pot ├── models │ ├── __init__.py │ └── ir_actions.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── security │ └── ir.model.access.csv ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ ├── js │ │ ├── web_ir_actions_act_window_message.esm.js │ │ └── web_ir_actions_act_window_msg_component.esm.js │ │ └── xml │ │ └── web_ir_actions_act_window_message.xml └── tests │ ├── __init__.py │ └── test_ir_actions_act_window_message.py ├── web_m2x_options ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── ar.po │ ├── de.po │ ├── es.po │ ├── es_BO.po │ ├── fi.po │ ├── fr.po │ ├── hr.po │ ├── it.po │ ├── ja.po │ ├── nl.po │ ├── nl_NL.po │ ├── pt_BR.po │ ├── sl.po │ ├── tr.po │ ├── web_m2x_options.pot │ └── zh_CN.po ├── models │ ├── __init__.py │ ├── ir_config_parameter.py │ └── ir_http.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── CREDITS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ ├── components │ │ ├── base.xml │ │ └── form.esm.js │ │ └── views │ │ └── fields │ │ └── standard_field_props.esm.js └── tests │ ├── __init__.py │ └── test_ir_config_parameter.py ├── web_m2x_options_manager ├── README.rst ├── __init__.py ├── __manifest__.py ├── demo │ └── res_partner_demo_view.xml ├── hooks.py ├── i18n │ ├── it.po │ └── web_m2x_options_manager.pot ├── models │ ├── __init__.py │ ├── ir_model.py │ ├── ir_model_fields.py │ ├── ir_ui_view.py │ └── m2x_create_edit_option.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── USAGE.md ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ └── index.html ├── tests │ ├── __init__.py │ ├── common.py │ ├── test_ir_model.py │ ├── test_ir_model_fields.py │ └── test_m2x_create_edit_option.py ├── tools.py └── views │ ├── ir_model.xml │ └── m2x_create_edit_option.xml ├── web_no_bubble ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── es.po │ ├── fr_FR.po │ ├── hr.po │ ├── it.po │ ├── web_no_bubble.pot │ └── zh_CN.po ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ └── css │ └── web_no_bubble.scss ├── web_notify ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── da.po │ ├── de.po │ ├── es.po │ ├── hr.po │ ├── it.po │ ├── nl.po │ ├── nl_NL.po │ ├── pt_BR.po │ ├── web_notify.pot │ └── zh_CN.po ├── models │ ├── __init__.py │ └── res_users.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── CREDITS.md │ ├── DESCRIPTION.md │ ├── INSTALL.md │ └── USAGE.md ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ ├── img │ │ ├── notifications_screenshot.gif │ │ └── test_notifications_demo.png │ └── src │ │ └── js │ │ └── services │ │ ├── notification.esm.js │ │ └── notification_services.esm.js ├── tests │ ├── __init__.py │ └── test_res_users.py └── views │ └── res_users_demo.xml ├── web_notify_channel_message ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── es.po │ ├── fr.po │ ├── it.po │ └── web_notify_channel_message.pot ├── models │ ├── __init__.py │ ├── discuss_channel.py │ └── res_users.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ └── index.html └── tests │ ├── __init__.py │ └── test_notify_channel_message.py ├── web_notify_upgrade ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── fr.po │ ├── it.po │ └── web_notify_upgrade.pot ├── models │ ├── __init__.py │ └── ir_model.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md └── static │ └── description │ ├── icon.png │ ├── index.html │ └── notify.png ├── web_pivot_computed_measure ├── README.rst ├── __init__.py ├── __manifest__.py ├── demo │ └── demo_users_pivot_view.xml ├── i18n │ ├── ca.po │ ├── es.po │ ├── it.po │ ├── tr.po │ └── web_pivot_computed_measure.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ ├── dropdown_item_custom_measure │ │ ├── dropdown_item_custom_measure.esm.js │ │ ├── dropdown_item_custom_measure.scss │ │ └── dropdown_item_custom_measure.xml │ │ ├── helpers │ │ └── utils.esm.js │ │ ├── pivot │ │ ├── pivot_controller.esm.js │ │ ├── pivot_model.esm.js │ │ ├── pivot_renderer.esm.js │ │ └── pivot_view.xml │ │ ├── report_view_measures │ │ ├── report_view_measures.esm.js │ │ └── report_view_measures.xml │ │ └── test │ │ └── test.esm.js └── tests │ ├── __init__.py │ └── test_ui_pivot.py ├── web_pwa_customize ├── README.rst ├── __init__.py ├── __manifest__.py ├── controllers │ ├── __init__.py │ └── webmanifest.py ├── i18n │ ├── es.po │ ├── it.po │ └── web_pwa_customize.pot ├── models │ ├── __init__.py │ └── res_config_settings.py ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTEXT.md │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ └── index.html ├── tests │ ├── __init__.py │ └── test_web_pwa_customize.py └── views │ └── res_config_settings_views.xml ├── web_quick_start_screen ├── README.rst ├── __init__.py ├── __manifest__.py ├── demo │ └── quick_screen_action_demo_data.xml ├── i18n │ ├── es.po │ ├── it.po │ └── web_quick_start_screen.pot ├── models │ ├── __init__.py │ ├── quick_start_screen.py │ ├── quick_start_screen_action.py │ └── res_users.py ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTEXT.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── security │ ├── ir.model.access.csv │ └── security.xml ├── static │ ├── description │ │ ├── icon.png │ │ ├── icon.svg │ │ └── index.html │ └── src │ │ ├── js │ │ ├── kanban_controller.esm.js │ │ └── start_screen_control_panel.xml │ │ └── scss │ │ └── quick_start_screen.scss ├── tests │ ├── __init__.py │ └── test_web_quick_start_screen.py └── views │ ├── quick_screen_action_view.xml │ ├── quick_start_screen_views.xml │ └── res_users_views.xml ├── web_refresher ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── ca.po │ ├── de.po │ ├── es.po │ ├── fr.po │ ├── hr.po │ ├── it.po │ ├── pt_BR.po │ ├── uk_UA.po │ └── web_refresher.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md └── static │ ├── description │ ├── icon.png │ ├── index.html │ └── refresh.png │ └── src │ ├── js │ ├── control_panel.esm.js │ └── refresher.esm.js │ ├── scss │ └── refresher.scss │ └── xml │ ├── control_panel.xml │ └── refresher.xml ├── web_remember_tree_column_width ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── it.po │ └── web_remember_tree_column_width.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ ├── js │ └── list_renderer.esm.js │ └── scss │ └── main.scss ├── web_responsive ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── ar.po │ ├── ca.po │ ├── da.po │ ├── de.po │ ├── es.po │ ├── es_VE.po │ ├── fr.po │ ├── fr_BE.po │ ├── fr_FR.po │ ├── hr.po │ ├── it.po │ ├── nl.po │ ├── pl.po │ ├── pt.po │ ├── pt_BR.po │ ├── ru.po │ ├── tr.po │ ├── uk_UA.po │ ├── web_responsive.pot │ └── zh_CN.po ├── models │ ├── __init__.py │ ├── ir_http.py │ └── res_users.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ ├── img │ │ ├── appmenu.gif │ │ ├── appsearch.gif │ │ ├── breadcrumbs.gif │ │ ├── calendar.gif │ │ ├── chatter-colors.png │ │ ├── chatter.png │ │ ├── chatter_sided.gif │ │ ├── chatter_topbar.gif │ │ ├── default_icon_app.png │ │ ├── device_rotation.gif │ │ ├── document_viewer.gif │ │ ├── dropdown_scroll.gif │ │ ├── form_buttons.gif │ │ ├── formview.gif │ │ ├── hamburger.gif │ │ ├── kanban.gif │ │ ├── label_size_large.png │ │ ├── label_size_small.png │ │ ├── listview.gif │ │ ├── mobile_search.gif │ │ ├── navbar.gif │ │ ├── redirecthome.gif │ │ ├── search_panel.gif │ │ ├── shortcuts.gif │ │ └── usermenu.gif │ ├── src │ │ ├── clickbot │ │ │ └── clickbot.esm.js │ │ ├── components │ │ │ ├── apps_menu │ │ │ │ ├── apps_menu.esm.js │ │ │ │ ├── apps_menu.scss │ │ │ │ ├── apps_menu.xml │ │ │ │ └── apps_menu_preferences.esm.js │ │ │ ├── apps_menu_item │ │ │ │ ├── apps_menu_item.esm.js │ │ │ │ ├── apps_menu_item.scss │ │ │ │ └── apps_menu_item.xml │ │ │ ├── apps_menu_tools.esm.js │ │ │ ├── chatter │ │ │ │ ├── base_recipients_list.xml │ │ │ │ ├── chatter.esm.js │ │ │ │ ├── chatter.scss │ │ │ │ └── chatter.xml │ │ │ ├── command_palette │ │ │ │ ├── main.esm.js │ │ │ │ ├── main.scss │ │ │ │ └── main.xml │ │ │ ├── control_panel │ │ │ │ └── control_panel.esm.js │ │ │ ├── file_viewer │ │ │ │ ├── file_viewer.esm.js │ │ │ │ ├── file_viewer.scss │ │ │ │ └── file_viewer.xml │ │ │ ├── hotkey │ │ │ │ ├── hotkey.scss │ │ │ │ └── hotkey.xml │ │ │ ├── menu_canonical_searchbar │ │ │ │ ├── searchbar.esm.js │ │ │ │ ├── searchbar.scss │ │ │ │ └── searchbar.xml │ │ │ ├── menu_fuse_searchbar │ │ │ │ ├── searchbar.esm.js │ │ │ │ └── searchbar.xml │ │ │ ├── menu_odoo_searchbar │ │ │ │ ├── searchbar.esm.js │ │ │ │ └── searchbar.xml │ │ │ └── menu_searchbar │ │ │ │ ├── searchbar.esm.js │ │ │ │ ├── searchbar.scss │ │ │ │ └── searchbar.xml │ │ ├── img │ │ │ └── home-menu-bg-overlay.svg │ │ ├── legacy │ │ │ ├── js │ │ │ │ └── web_responsive.esm.js │ │ │ ├── scss │ │ │ │ ├── big_boxes.scss │ │ │ │ ├── form_variable.scss │ │ │ │ ├── list_sticky_header.scss │ │ │ │ ├── primary_variable.scss │ │ │ │ └── web_responsive.scss │ │ │ └── xml │ │ │ │ ├── custom_favorite_item.xml │ │ │ │ └── form_buttons.xml │ │ ├── lib │ │ │ └── fuse │ │ │ │ ├── LICENSE │ │ │ │ ├── fuse.basic.js │ │ │ │ └── fuse.basic.min.js │ │ └── views │ │ │ └── form │ │ │ ├── form_controller.scss │ │ │ ├── form_renderer.esm.js │ │ │ ├── form_statusbar.scss │ │ │ └── status_bar_buttons.xml │ └── tests │ │ ├── apps_menu_search_tests.esm.js │ │ └── apps_menu_tests.esm.js ├── tests │ ├── __init__.py │ ├── test_ir_http.py │ └── test_res_users.py └── views │ └── res_users_views.xml ├── web_save_discard_button ├── README.md ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── es.po │ ├── fr.po │ ├── it.po │ └── web_save_discard_button.pot ├── models │ ├── __init__.py │ └── ir_http.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md └── static │ ├── description │ ├── icon.png │ ├── index.html │ └── save_button.png │ └── src │ └── xml │ └── template.xml ├── web_search_with_and ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── es.po │ ├── it.po │ ├── pt.po │ ├── tr.po │ └── web_search_with_and.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── USAGE.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ └── js │ ├── search_bar.esm.js │ └── search_model.esm.js ├── web_send_message_popup ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── fa.po │ ├── it.po │ └── web_send_message_popup.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ └── chatter │ └── web │ └── chatter_patch.esm.js ├── web_session_auto_close ├── README.rst ├── __init__.py ├── __manifest__.py ├── controllers │ ├── __init__.py │ └── main.py ├── i18n │ ├── it.po │ └── web_session_auto_close.pot ├── models │ ├── __init__.py │ └── res_config_settings.py ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ └── js │ │ └── session_auto_close.esm.js └── views │ └── res_config_settings.xml ├── web_systray_button_init_action ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── it.po │ └── web_systray_button_init_action.pot ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ ├── button │ │ ├── button.esm.js │ │ ├── button.scss │ │ └── button.xml │ │ └── tours │ │ └── tour.esm.js └── tests │ ├── __init__.py │ └── test_web_systray_button_init_action.py ├── web_theme_classic ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── it.po │ └── web_theme_classic.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md └── static │ ├── description │ ├── icon.png │ ├── index.html │ ├── product_template_form_with_module.png │ └── product_template_form_without_module.png │ └── src │ └── scss │ ├── web_theme_classic.dark.scss │ └── web_theme_classic.scss ├── web_timeline ├── README.rst ├── __init__.py ├── __manifest__.py ├── demo │ └── ir_cron_view.xml ├── i18n │ ├── de.po │ ├── es.po │ ├── fa.po │ ├── fr.po │ ├── he.po │ ├── hr.po │ ├── it.po │ ├── nl_NL.po │ ├── pt.po │ ├── pt_BR.po │ ├── tr.po │ ├── web_timeline.pot │ └── zh_CN.po ├── models │ ├── __init__.py │ ├── ir_action.py │ └── ir_ui_view.py ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ ├── lib │ │ └── vis-timeline │ │ │ ├── vis-timeline-graph2d.css │ │ │ └── vis-timeline-graph2d.js │ ├── src │ │ └── views │ │ │ └── timeline │ │ │ ├── timeline_arch_parser.esm.js │ │ │ ├── timeline_canvas.esm.js │ │ │ ├── timeline_canvas.scss │ │ │ ├── timeline_controller.esm.js │ │ │ ├── timeline_controller.xml │ │ │ ├── timeline_model.esm.js │ │ │ ├── timeline_renderer.esm.js │ │ │ ├── timeline_renderer.xml │ │ │ ├── timeline_view.esm.js │ │ │ └── timeline_view.scss │ └── tests │ │ ├── helpers.esm.js │ │ ├── web_timeline_arch_parser_tests.esm.js │ │ └── web_timeline_view_tests.esm.js └── tests │ ├── __init__.py │ └── test_web_timeline.py ├── web_touchscreen ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── it.po │ └── web_touchscreen.pot ├── pyproject.toml ├── readme │ ├── CONTEXT.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ └── fields.esm.js ├── web_tree_dynamic_colored_field ├── README.rst ├── __init__.py ├── __manifest__.py ├── demo │ └── res_users.xml ├── i18n │ ├── es.po │ ├── fi.po │ ├── fr.po │ ├── it.po │ ├── nl_NL.po │ ├── sl.po │ ├── web_tree_dynamic_colored_field.pot │ └── zh_CN.po ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── CREDITS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ ├── js │ └── list_renderer.esm.js │ └── xml │ └── list.xml ├── web_tree_many2one_clickable ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── it.po │ ├── web_tree_many2one_clickable.pot │ └── zh_CN.po ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md └── static │ ├── description │ ├── icon.png │ └── index.html │ ├── img │ └── clickable.gif │ └── src │ └── components │ └── many2one_button │ ├── many2one_button.esm.js │ ├── many2one_button.scss │ └── many2one_button.xml ├── web_widget_bokeh_chart ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── it.po │ ├── web_widget_bokeh_chart.pot │ └── zh_CN.po ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── CREDITS.md │ ├── DESCRIPTION.md │ ├── INSTALL.md │ ├── ROADMAP.md │ └── USAGE.md └── static │ ├── description │ ├── example.png │ ├── icon.png │ └── index.html │ └── src │ ├── js │ ├── web_widget_bokeh_chart.esm.js │ └── web_widget_bokeh_json_chart.esm.js │ ├── lib │ └── bokeh │ │ ├── bokeh-3.6.3.min.js │ │ ├── bokeh-api-3.6.3.min.js │ │ ├── bokeh-gl-3.6.3.min.js │ │ ├── bokeh-mathjax-3.6.3.min.js │ │ ├── bokeh-tables-3.6.3.min.js │ │ └── bokeh-widgets-3.6.3.min.js │ └── xml │ └── bokeh.xml ├── web_widget_domain_editor_dialog ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── es.po │ ├── it.po │ ├── web_widget_domain_editor_dialog.pot │ └── zh_CN.po ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── USAGE.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ ├── img │ └── behaviour.gif │ └── js │ ├── domain_field.esm.js │ └── widget_domain_editor_dialog.esm.js ├── web_widget_dropdown_dynamic ├── README.rst ├── __init__.py ├── __manifest__.py ├── demo │ ├── ir_filters_view.xml │ └── ir_model_fields.xml ├── i18n │ ├── de.po │ ├── es.po │ ├── it.po │ ├── tr.po │ └── web_widget_dropdown_dynamic.pot ├── models │ ├── __init__.py │ └── ir_filters.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── CREDITS.md │ ├── DESCRIPTION.md │ └── USAGE.md └── static │ ├── description │ ├── icon.png │ └── index.html │ ├── src │ └── js │ │ └── field_dynamic_dropdown.esm.js │ └── tests │ └── web_widget_dropdown_dynamic_tests.esm.js ├── web_widget_mpld3_chart ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── es.po │ ├── it.po │ └── web_widget_mpld3_chart.pot ├── models │ ├── __init__.py │ └── abstract_mpld3_parser.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── CREDITS.md │ ├── DESCRIPTION.md │ ├── INSTALL.md │ └── USAGE.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ ├── js │ └── web_widget_mpld3_chart.esm.js │ ├── lib │ ├── d3 │ │ └── d3.v5.js │ └── mpld3 │ │ └── mpld3.v0.5.10.js │ └── xml │ └── web_widget_mpld3_chart.xml ├── web_widget_numeric_step ├── README.rst ├── __init__.py ├── __manifest__.py ├── demo │ └── ir_cron.xml ├── i18n │ ├── de.po │ ├── es.po │ ├── fr.po │ ├── it.po │ └── web_widget_numeric_step.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md └── static │ ├── description │ ├── add_two_buttons.png │ ├── icon.png │ ├── index.html │ ├── step0,25andlimits.gif │ └── step10_limit15_placeholder117_with_onchange.gif │ └── src │ ├── numeric_step.esm.js │ ├── numeric_step.scss │ └── numeric_step.xml ├── web_widget_one2many_tree_line_duplicate ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── it.po │ └── web_widget_one2many_tree_line_duplicate.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ └── list │ ├── list_renderer.esm.js │ └── list_renderer.xml ├── web_widget_open_tab ├── README.rst ├── __init__.py ├── __manifest__.py ├── demo │ └── res_users_view.xml ├── i18n │ ├── ca.po │ ├── de.po │ ├── es.po │ ├── it.po │ ├── ja.po │ ├── pt_BR.po │ └── web_widget_open_tab.pot ├── models │ ├── __init__.py │ ├── ir_model.py │ └── ir_ui_view.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ ├── js │ │ └── open_tab_widget.esm.js │ │ └── xml │ │ └── open_tab_widget.xml ├── tests │ ├── __init__.py │ └── test_main.py └── views │ └── ir_model_views.xml ├── web_widget_popover ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── it.po │ └── web_widget_popover.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── USAGE.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ ├── popover.esm.js │ └── popover.xml ├── web_widget_product_label_section_and_note_full_label ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── it.po │ └── web_widget_product_label_section_and_note_full_label.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ └── product_label_section_and_note_field │ ├── product_label_section_and_note_field.esm.js │ └── product_label_section_and_note_field.xml ├── web_widget_product_label_section_and_note_name_visibility ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── it.po │ ├── web_widget_product_label_section_and_note.pot │ └── web_widget_product_label_section_and_note_name_visibility.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md └── static │ ├── description │ ├── icon.png │ └── index.html │ └── src │ └── components │ └── product_label_section_and_note_field │ ├── product_label_section_and_note_field.esm.js │ └── product_label_section_and_note_field.xml ├── web_widget_url_advanced ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── es.po │ ├── it.po │ ├── web_widget_url_advanced.pot │ └── zh_CN.po ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── USAGE.md └── static │ ├── description │ ├── after.png │ ├── before.png │ ├── icon.png │ └── index.html │ └── src │ └── fields │ ├── url_field.esm.js │ └── url_field.xml └── web_widget_x2many_2d_matrix ├── README.rst ├── __init__.py ├── __manifest__.py ├── demo └── res_groups_views.xml ├── i18n ├── ar.po ├── de.po ├── es.po ├── fi.po ├── fr.po ├── hr.po ├── it.po ├── lt.po ├── nl.po ├── nl_NL.po ├── pt_BR.po ├── sl.po ├── tr.po ├── web_widget_x2many_2d_matrix.pot └── zh_CN.po ├── pyproject.toml ├── readme ├── CONTRIBUTORS.md ├── DESCRIPTION.md ├── HISTORY.md ├── ROADMAP.md └── USAGE.md ├── static ├── description │ ├── icon.png │ ├── index.html │ └── screenshot.png ├── src │ └── components │ │ ├── x2many_2d_matrix_field │ │ ├── x2many_2d_matrix_field.esm.js │ │ ├── x2many_2d_matrix_field.scss │ │ └── x2many_2d_matrix_field.xml │ │ └── x2many_2d_matrix_renderer │ │ ├── x2many_2d_matrix_renderer.esm.js │ │ └── x2many_2d_matrix_renderer.xml └── tests │ └── web_widget_x2many_2d_matrix.test.js └── tests ├── __init__.py └── test_web_widget_x2many_2d_matrix.py /.copier-answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/.copier-answers.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/.pylintrc -------------------------------------------------------------------------------- /.pylintrc-mandatory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/.pylintrc-mandatory -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/.ruff.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/README.md -------------------------------------------------------------------------------- /checklog-odoo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/checklog-odoo.cfg -------------------------------------------------------------------------------- /eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/eslint.config.cjs -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup/_metapackage/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/setup/_metapackage/pyproject.toml -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | odoo_test_helper 2 | -------------------------------------------------------------------------------- /web_calendar_slot_duration/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_calendar_slot_duration/README.rst -------------------------------------------------------------------------------- /web_calendar_slot_duration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_calendar_slot_duration/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_calendar_slot_duration/__manifest__.py -------------------------------------------------------------------------------- /web_calendar_slot_duration/i18n/de.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_calendar_slot_duration/i18n/it.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_calendar_slot_duration/i18n/pt_BR.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_calendar_slot_duration/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_calendar_slot_duration/pyproject.toml -------------------------------------------------------------------------------- /web_calendar_slot_duration/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_calendar_slot_duration/readme/CONFIGURE.md -------------------------------------------------------------------------------- /web_calendar_slot_duration/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_calendar_slot_duration/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_calendar_slot_duration/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_calendar_slot_duration/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_calendar_slot_duration/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_calendar_slot_duration/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_calendar_slot_duration/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_calendar_slot_duration/readme/USAGE.md -------------------------------------------------------------------------------- /web_chatter_position/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/README.rst -------------------------------------------------------------------------------- /web_chatter_position/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /web_chatter_position/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/__manifest__.py -------------------------------------------------------------------------------- /web_chatter_position/i18n/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/i18n/ca.po -------------------------------------------------------------------------------- /web_chatter_position/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/i18n/de.po -------------------------------------------------------------------------------- /web_chatter_position/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/i18n/es.po -------------------------------------------------------------------------------- /web_chatter_position/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/i18n/fr.po -------------------------------------------------------------------------------- /web_chatter_position/i18n/fr_BE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/i18n/fr_BE.po -------------------------------------------------------------------------------- /web_chatter_position/i18n/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/i18n/hr.po -------------------------------------------------------------------------------- /web_chatter_position/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/i18n/it.po -------------------------------------------------------------------------------- /web_chatter_position/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/i18n/nl.po -------------------------------------------------------------------------------- /web_chatter_position/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/i18n/pt_BR.po -------------------------------------------------------------------------------- /web_chatter_position/i18n/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/i18n/tr.po -------------------------------------------------------------------------------- /web_chatter_position/i18n/web_chatter_position.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/i18n/web_chatter_position.pot -------------------------------------------------------------------------------- /web_chatter_position/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import res_users 2 | -------------------------------------------------------------------------------- /web_chatter_position/models/res_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/models/res_users.py -------------------------------------------------------------------------------- /web_chatter_position/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/pyproject.toml -------------------------------------------------------------------------------- /web_chatter_position/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_chatter_position/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_chatter_position/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/readme/USAGE.md -------------------------------------------------------------------------------- /web_chatter_position/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/static/description/icon.png -------------------------------------------------------------------------------- /web_chatter_position/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/static/description/index.html -------------------------------------------------------------------------------- /web_chatter_position/views/res_users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/views/res_users.xml -------------------------------------------------------------------------------- /web_chatter_position/views/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_chatter_position/views/web.xml -------------------------------------------------------------------------------- /web_company_color/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/README.rst -------------------------------------------------------------------------------- /web_company_color/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/__init__.py -------------------------------------------------------------------------------- /web_company_color/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/__manifest__.py -------------------------------------------------------------------------------- /web_company_color/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/hooks.py -------------------------------------------------------------------------------- /web_company_color/i18n/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/i18n/ca.po -------------------------------------------------------------------------------- /web_company_color/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/i18n/de.po -------------------------------------------------------------------------------- /web_company_color/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/i18n/es.po -------------------------------------------------------------------------------- /web_company_color/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/i18n/fr.po -------------------------------------------------------------------------------- /web_company_color/i18n/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/i18n/hr.po -------------------------------------------------------------------------------- /web_company_color/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/i18n/it.po -------------------------------------------------------------------------------- /web_company_color/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/i18n/nl.po -------------------------------------------------------------------------------- /web_company_color/i18n/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/i18n/pt.po -------------------------------------------------------------------------------- /web_company_color/i18n/web_company_color.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/i18n/web_company_color.pot -------------------------------------------------------------------------------- /web_company_color/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/i18n/zh_CN.po -------------------------------------------------------------------------------- /web_company_color/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/models/__init__.py -------------------------------------------------------------------------------- /web_company_color/models/assetsbundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/models/assetsbundle.py -------------------------------------------------------------------------------- /web_company_color/models/ir_qweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/models/ir_qweb.py -------------------------------------------------------------------------------- /web_company_color/models/res_company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/models/res_company.py -------------------------------------------------------------------------------- /web_company_color/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/pyproject.toml -------------------------------------------------------------------------------- /web_company_color/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_company_color/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_company_color/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_company_color/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/readme/USAGE.md -------------------------------------------------------------------------------- /web_company_color/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/static/description/icon.png -------------------------------------------------------------------------------- /web_company_color/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/static/description/index.html -------------------------------------------------------------------------------- /web_company_color/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_res_company 2 | -------------------------------------------------------------------------------- /web_company_color/tests/test_res_company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/tests/test_res_company.py -------------------------------------------------------------------------------- /web_company_color/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/utils.py -------------------------------------------------------------------------------- /web_company_color/view/assets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/view/assets.xml -------------------------------------------------------------------------------- /web_company_color/view/res_company.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_company_color/view/res_company.xml -------------------------------------------------------------------------------- /web_copy_confirm/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_copy_confirm/README.rst -------------------------------------------------------------------------------- /web_copy_confirm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_copy_confirm/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_copy_confirm/__manifest__.py -------------------------------------------------------------------------------- /web_copy_confirm/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_copy_confirm/i18n/de.po -------------------------------------------------------------------------------- /web_copy_confirm/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_copy_confirm/i18n/fr.po -------------------------------------------------------------------------------- /web_copy_confirm/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_copy_confirm/i18n/it.po -------------------------------------------------------------------------------- /web_copy_confirm/i18n/web_copy_confirm.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_copy_confirm/i18n/web_copy_confirm.pot -------------------------------------------------------------------------------- /web_copy_confirm/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_copy_confirm/pyproject.toml -------------------------------------------------------------------------------- /web_copy_confirm/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_copy_confirm/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_copy_confirm/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_copy_confirm/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_copy_confirm/readme/HISTORY.md: -------------------------------------------------------------------------------- 1 | ## 14.0.1.0.0 (2020-01-04) 2 | 3 | - \[PORT\] Ported to V14 4 | -------------------------------------------------------------------------------- /web_copy_confirm/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_copy_confirm/static/description/icon.png -------------------------------------------------------------------------------- /web_copy_confirm/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_copy_confirm/static/description/index.html -------------------------------------------------------------------------------- /web_copy_confirm/static/tests/confirm.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_copy_confirm/static/tests/confirm.test.js -------------------------------------------------------------------------------- /web_datetime_picker_default_time/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_datetime_picker_default_time/README.rst -------------------------------------------------------------------------------- /web_datetime_picker_default_time/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_datetime_picker_default_time/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_datetime_picker_default_time/__manifest__.py -------------------------------------------------------------------------------- /web_datetime_picker_default_time/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_datetime_picker_default_time/i18n/it.po -------------------------------------------------------------------------------- /web_datetime_picker_default_time/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_datetime_picker_default_time/pyproject.toml -------------------------------------------------------------------------------- /web_datetime_picker_default_time/readme/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_datetime_picker_default_time/readme/CREDITS.md -------------------------------------------------------------------------------- /web_datetime_picker_default_time/readme/ROADMAP.md: -------------------------------------------------------------------------------- 1 | * Handle Timezone related to the default time 2 | -------------------------------------------------------------------------------- /web_datetime_picker_default_time/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_datetime_picker_default_time/readme/USAGE.md -------------------------------------------------------------------------------- /web_dialog_size/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/README.rst -------------------------------------------------------------------------------- /web_dialog_size/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /web_dialog_size/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/__manifest__.py -------------------------------------------------------------------------------- /web_dialog_size/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/i18n/de.po -------------------------------------------------------------------------------- /web_dialog_size/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/i18n/es.po -------------------------------------------------------------------------------- /web_dialog_size/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/i18n/fr.po -------------------------------------------------------------------------------- /web_dialog_size/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/i18n/it.po -------------------------------------------------------------------------------- /web_dialog_size/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/i18n/nl.po -------------------------------------------------------------------------------- /web_dialog_size/i18n/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/i18n/tr.po -------------------------------------------------------------------------------- /web_dialog_size/i18n/web_dialog_size.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/i18n/web_dialog_size.pot -------------------------------------------------------------------------------- /web_dialog_size/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/i18n/zh_CN.po -------------------------------------------------------------------------------- /web_dialog_size/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ir_config_parameter 2 | -------------------------------------------------------------------------------- /web_dialog_size/models/ir_config_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/models/ir_config_parameter.py -------------------------------------------------------------------------------- /web_dialog_size/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/pyproject.toml -------------------------------------------------------------------------------- /web_dialog_size/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/readme/CONFIGURE.md -------------------------------------------------------------------------------- /web_dialog_size/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_dialog_size/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_dialog_size/readme/ROADMAP.md: -------------------------------------------------------------------------------- 1 | - Allow setting default dialog size per user. 2 | -------------------------------------------------------------------------------- /web_dialog_size/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/static/description/icon.png -------------------------------------------------------------------------------- /web_dialog_size/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/static/description/index.html -------------------------------------------------------------------------------- /web_dialog_size/static/src/js/web_dialog_size.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/static/src/js/web_dialog_size.esm.js -------------------------------------------------------------------------------- /web_dialog_size/static/src/scss/web_dialog_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/static/src/scss/web_dialog_size.scss -------------------------------------------------------------------------------- /web_dialog_size/static/src/xml/ExpandButton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/static/src/xml/ExpandButton.xml -------------------------------------------------------------------------------- /web_dialog_size/static/src/xml/web_dialog_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/static/src/xml/web_dialog_header.xml -------------------------------------------------------------------------------- /web_dialog_size/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_web_dialog_size 2 | -------------------------------------------------------------------------------- /web_dialog_size/tests/test_web_dialog_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_dialog_size/tests/test_web_dialog_size.py -------------------------------------------------------------------------------- /web_disable_export_group/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/README.rst -------------------------------------------------------------------------------- /web_disable_export_group/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /web_disable_export_group/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/__manifest__.py -------------------------------------------------------------------------------- /web_disable_export_group/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/i18n/es.po -------------------------------------------------------------------------------- /web_disable_export_group/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/i18n/fr.po -------------------------------------------------------------------------------- /web_disable_export_group/i18n/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/i18n/hr.po -------------------------------------------------------------------------------- /web_disable_export_group/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/i18n/it.po -------------------------------------------------------------------------------- /web_disable_export_group/i18n/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/i18n/pt.po -------------------------------------------------------------------------------- /web_disable_export_group/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/i18n/zh_CN.po -------------------------------------------------------------------------------- /web_disable_export_group/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/models/__init__.py -------------------------------------------------------------------------------- /web_disable_export_group/models/ir_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/models/ir_http.py -------------------------------------------------------------------------------- /web_disable_export_group/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/models/models.py -------------------------------------------------------------------------------- /web_disable_export_group/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/pyproject.toml -------------------------------------------------------------------------------- /web_disable_export_group/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/readme/CONFIGURE.md -------------------------------------------------------------------------------- /web_disable_export_group/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_disable_export_group/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_disable_export_group/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/readme/USAGE.md -------------------------------------------------------------------------------- /web_disable_export_group/security/groups.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/security/groups.xml -------------------------------------------------------------------------------- /web_disable_export_group/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/static/description/icon.png -------------------------------------------------------------------------------- /web_disable_export_group/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_tour 2 | -------------------------------------------------------------------------------- /web_disable_export_group/tests/test_tour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_disable_export_group/tests/test_tour.py -------------------------------------------------------------------------------- /web_editor_class_selector/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_class_selector/README.rst -------------------------------------------------------------------------------- /web_editor_class_selector/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /web_editor_class_selector/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_class_selector/__manifest__.py -------------------------------------------------------------------------------- /web_editor_class_selector/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_class_selector/i18n/it.po -------------------------------------------------------------------------------- /web_editor_class_selector/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import web_editor_class 2 | -------------------------------------------------------------------------------- /web_editor_class_selector/models/web_editor_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_class_selector/models/web_editor_class.py -------------------------------------------------------------------------------- /web_editor_class_selector/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_class_selector/pyproject.toml -------------------------------------------------------------------------------- /web_editor_class_selector/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_class_selector/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_editor_class_selector/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_class_selector/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_editor_class_selector/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_class_selector/readme/USAGE.md -------------------------------------------------------------------------------- /web_editor_class_selector/views/menus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_class_selector/views/menus.xml -------------------------------------------------------------------------------- /web_editor_disable_chatgpt/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_disable_chatgpt/README.rst -------------------------------------------------------------------------------- /web_editor_disable_chatgpt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_editor_disable_chatgpt/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_disable_chatgpt/__manifest__.py -------------------------------------------------------------------------------- /web_editor_disable_chatgpt/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_disable_chatgpt/i18n/it.po -------------------------------------------------------------------------------- /web_editor_disable_chatgpt/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_disable_chatgpt/pyproject.toml -------------------------------------------------------------------------------- /web_editor_disable_chatgpt/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_disable_chatgpt/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_editor_disable_chatgpt/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | Installing this module removes ChatGPT capabilities from the HTML editor. 2 | -------------------------------------------------------------------------------- /web_editor_disable_chatgpt/readme/ROADMAP.md: -------------------------------------------------------------------------------- 1 | * Remove ChatGPT capabilities from WYSIWYG editor. 2 | -------------------------------------------------------------------------------- /web_editor_disable_chatgpt/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_tours 2 | -------------------------------------------------------------------------------- /web_editor_disable_chatgpt/tests/test_tours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_editor_disable_chatgpt/tests/test_tours.py -------------------------------------------------------------------------------- /web_environment_ribbon/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/README.rst -------------------------------------------------------------------------------- /web_environment_ribbon/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /web_environment_ribbon/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/__manifest__.py -------------------------------------------------------------------------------- /web_environment_ribbon/data/ribbon_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/data/ribbon_data.xml -------------------------------------------------------------------------------- /web_environment_ribbon/i18n/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/i18n/ca.po -------------------------------------------------------------------------------- /web_environment_ribbon/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/i18n/de.po -------------------------------------------------------------------------------- /web_environment_ribbon/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/i18n/es.po -------------------------------------------------------------------------------- /web_environment_ribbon/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/i18n/fr.po -------------------------------------------------------------------------------- /web_environment_ribbon/i18n/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/i18n/hr.po -------------------------------------------------------------------------------- /web_environment_ribbon/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/i18n/it.po -------------------------------------------------------------------------------- /web_environment_ribbon/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/i18n/nl.po -------------------------------------------------------------------------------- /web_environment_ribbon/i18n/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/i18n/nl_NL.po -------------------------------------------------------------------------------- /web_environment_ribbon/i18n/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/i18n/pt.po -------------------------------------------------------------------------------- /web_environment_ribbon/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/i18n/pt_BR.po -------------------------------------------------------------------------------- /web_environment_ribbon/i18n/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/i18n/sl.po -------------------------------------------------------------------------------- /web_environment_ribbon/i18n/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/i18n/zh.po -------------------------------------------------------------------------------- /web_environment_ribbon/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/i18n/zh_CN.po -------------------------------------------------------------------------------- /web_environment_ribbon/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import web_environment_ribbon_backend 2 | -------------------------------------------------------------------------------- /web_environment_ribbon/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/pyproject.toml -------------------------------------------------------------------------------- /web_environment_ribbon/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/readme/CONFIGURE.md -------------------------------------------------------------------------------- /web_environment_ribbon/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_environment_ribbon/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_environment_ribbon/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/readme/USAGE.md -------------------------------------------------------------------------------- /web_environment_ribbon/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/static/description/icon.png -------------------------------------------------------------------------------- /web_environment_ribbon/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/static/description/index.html -------------------------------------------------------------------------------- /web_environment_ribbon/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_environment_ribbon/tests/__init__.py -------------------------------------------------------------------------------- /web_excel_export_dynamic_expand/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_excel_export_dynamic_expand/README.rst -------------------------------------------------------------------------------- /web_excel_export_dynamic_expand/__init__.py: -------------------------------------------------------------------------------- 1 | from . import controllers 2 | -------------------------------------------------------------------------------- /web_excel_export_dynamic_expand/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_excel_export_dynamic_expand/__manifest__.py -------------------------------------------------------------------------------- /web_excel_export_dynamic_expand/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_excel_export_dynamic_expand/i18n/it.po -------------------------------------------------------------------------------- /web_excel_export_dynamic_expand/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_excel_export_dynamic_expand/pyproject.toml -------------------------------------------------------------------------------- /web_favicon/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/README.rst -------------------------------------------------------------------------------- /web_favicon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/__init__.py -------------------------------------------------------------------------------- /web_favicon/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/__manifest__.py -------------------------------------------------------------------------------- /web_favicon/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/i18n/it.po -------------------------------------------------------------------------------- /web_favicon/i18n/web_favicon.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/i18n/web_favicon.pot -------------------------------------------------------------------------------- /web_favicon/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/models/__init__.py -------------------------------------------------------------------------------- /web_favicon/models/res_company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/models/res_company.py -------------------------------------------------------------------------------- /web_favicon/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/pyproject.toml -------------------------------------------------------------------------------- /web_favicon/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/readme/CONFIGURE.md -------------------------------------------------------------------------------- /web_favicon/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_favicon/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_favicon/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_favicon/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/static/description/icon.png -------------------------------------------------------------------------------- /web_favicon/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/static/description/index.html -------------------------------------------------------------------------------- /web_favicon/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/tests/__init__.py -------------------------------------------------------------------------------- /web_favicon/tests/test_web_favicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/tests/test_web_favicon.py -------------------------------------------------------------------------------- /web_favicon/views/res_company_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/views/res_company_views.xml -------------------------------------------------------------------------------- /web_favicon/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_favicon/views/templates.xml -------------------------------------------------------------------------------- /web_filter_header_button/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_filter_header_button/README.rst -------------------------------------------------------------------------------- /web_filter_header_button/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_filter_header_button/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_filter_header_button/__manifest__.py -------------------------------------------------------------------------------- /web_filter_header_button/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_filter_header_button/i18n/it.po -------------------------------------------------------------------------------- /web_filter_header_button/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_filter_header_button/pyproject.toml -------------------------------------------------------------------------------- /web_filter_header_button/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_filter_header_button/readme/CONFIGURE.md -------------------------------------------------------------------------------- /web_filter_header_button/readme/CONTEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_filter_header_button/readme/CONTEXT.md -------------------------------------------------------------------------------- /web_filter_header_button/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_filter_header_button/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_filter_header_button/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_filter_header_button/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_filter_header_button/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_filter_header_button/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_filter_header_button/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_filter_header_button/readme/USAGE.md -------------------------------------------------------------------------------- /web_filter_header_button/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_filter_header_button/static/description/icon.png -------------------------------------------------------------------------------- /web_form_banner/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/README.rst -------------------------------------------------------------------------------- /web_form_banner/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /web_form_banner/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/__manifest__.py -------------------------------------------------------------------------------- /web_form_banner/demo/web_form_banner_rule_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/demo/web_form_banner_rule_demo.xml -------------------------------------------------------------------------------- /web_form_banner/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/i18n/it.po -------------------------------------------------------------------------------- /web_form_banner/i18n/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/i18n/ja.po -------------------------------------------------------------------------------- /web_form_banner/i18n/web_form_banner.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/i18n/web_form_banner.pot -------------------------------------------------------------------------------- /web_form_banner/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/models/__init__.py -------------------------------------------------------------------------------- /web_form_banner/models/ir_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/models/ir_model.py -------------------------------------------------------------------------------- /web_form_banner/models/web_form_banner_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/models/web_form_banner_rule.py -------------------------------------------------------------------------------- /web_form_banner/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/pyproject.toml -------------------------------------------------------------------------------- /web_form_banner/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_form_banner/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_form_banner/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_form_banner/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/readme/USAGE.md -------------------------------------------------------------------------------- /web_form_banner/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/security/ir.model.access.csv -------------------------------------------------------------------------------- /web_form_banner/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/static/description/icon.png -------------------------------------------------------------------------------- /web_form_banner/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/static/description/index.html -------------------------------------------------------------------------------- /web_form_banner/static/src/js/web_form_banner.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/static/src/js/web_form_banner.esm.js -------------------------------------------------------------------------------- /web_form_banner/static/src/scss/web_form_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/static/src/scss/web_form_banner.scss -------------------------------------------------------------------------------- /web_form_banner/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_web_form_banner 2 | -------------------------------------------------------------------------------- /web_form_banner/tests/test_web_form_banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/tests/test_web_form_banner.py -------------------------------------------------------------------------------- /web_form_banner/views/web_form_banner_rule_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_form_banner/views/web_form_banner_rule_views.xml -------------------------------------------------------------------------------- /web_group_expand/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/README.rst -------------------------------------------------------------------------------- /web_group_expand/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_group_expand/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/__manifest__.py -------------------------------------------------------------------------------- /web_group_expand/i18n/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/i18n/ca.po -------------------------------------------------------------------------------- /web_group_expand/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/i18n/de.po -------------------------------------------------------------------------------- /web_group_expand/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/i18n/es.po -------------------------------------------------------------------------------- /web_group_expand/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/i18n/fr.po -------------------------------------------------------------------------------- /web_group_expand/i18n/fr_BE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/i18n/fr_BE.po -------------------------------------------------------------------------------- /web_group_expand/i18n/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/i18n/fr_FR.po -------------------------------------------------------------------------------- /web_group_expand/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/i18n/it.po -------------------------------------------------------------------------------- /web_group_expand/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/i18n/nl.po -------------------------------------------------------------------------------- /web_group_expand/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/i18n/pt_BR.po -------------------------------------------------------------------------------- /web_group_expand/i18n/web_group_expand.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/i18n/web_group_expand.pot -------------------------------------------------------------------------------- /web_group_expand/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/pyproject.toml -------------------------------------------------------------------------------- /web_group_expand/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_group_expand/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_group_expand/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/static/description/icon.png -------------------------------------------------------------------------------- /web_group_expand/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/static/description/index.html -------------------------------------------------------------------------------- /web_group_expand/static/src/xml/list_controller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_group_expand/static/src/xml/list_controller.xml -------------------------------------------------------------------------------- /web_ir_actions_act_multi/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_multi/README.rst -------------------------------------------------------------------------------- /web_ir_actions_act_multi/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /web_ir_actions_act_multi/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_multi/__manifest__.py -------------------------------------------------------------------------------- /web_ir_actions_act_multi/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_multi/i18n/es.po -------------------------------------------------------------------------------- /web_ir_actions_act_multi/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_multi/i18n/it.po -------------------------------------------------------------------------------- /web_ir_actions_act_multi/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_multi/i18n/zh_CN.po -------------------------------------------------------------------------------- /web_ir_actions_act_multi/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_multi/models/__init__.py -------------------------------------------------------------------------------- /web_ir_actions_act_multi/models/ir_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_multi/models/ir_actions.py -------------------------------------------------------------------------------- /web_ir_actions_act_multi/models/ir_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_multi/models/ir_model.py -------------------------------------------------------------------------------- /web_ir_actions_act_multi/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_multi/pyproject.toml -------------------------------------------------------------------------------- /web_ir_actions_act_multi/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_multi/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_ir_actions_act_multi/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_multi/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_ir_actions_act_multi/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_multi/readme/USAGE.md -------------------------------------------------------------------------------- /web_ir_actions_act_multi/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_multi/static/description/icon.png -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/README.rst -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/__manifest__.py -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/ar.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/de.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/es.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/eu.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/fi.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/fr.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/hr.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/it.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/nl.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/nl_NL.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/pt.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/pt_BR.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/ro.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/sl.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/i18n/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/i18n/tr.po -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ir_actions 2 | -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/pyproject.toml -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/readme/USAGE.md -------------------------------------------------------------------------------- /web_ir_actions_act_window_message/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_ir_actions_act_window_message/tests/__init__.py -------------------------------------------------------------------------------- /web_m2x_options/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/README.rst -------------------------------------------------------------------------------- /web_m2x_options/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /web_m2x_options/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/__manifest__.py -------------------------------------------------------------------------------- /web_m2x_options/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/ar.po -------------------------------------------------------------------------------- /web_m2x_options/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/de.po -------------------------------------------------------------------------------- /web_m2x_options/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/es.po -------------------------------------------------------------------------------- /web_m2x_options/i18n/es_BO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/es_BO.po -------------------------------------------------------------------------------- /web_m2x_options/i18n/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/fi.po -------------------------------------------------------------------------------- /web_m2x_options/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/fr.po -------------------------------------------------------------------------------- /web_m2x_options/i18n/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/hr.po -------------------------------------------------------------------------------- /web_m2x_options/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/it.po -------------------------------------------------------------------------------- /web_m2x_options/i18n/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/ja.po -------------------------------------------------------------------------------- /web_m2x_options/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/nl.po -------------------------------------------------------------------------------- /web_m2x_options/i18n/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/nl_NL.po -------------------------------------------------------------------------------- /web_m2x_options/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/pt_BR.po -------------------------------------------------------------------------------- /web_m2x_options/i18n/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/sl.po -------------------------------------------------------------------------------- /web_m2x_options/i18n/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/tr.po -------------------------------------------------------------------------------- /web_m2x_options/i18n/web_m2x_options.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/web_m2x_options.pot -------------------------------------------------------------------------------- /web_m2x_options/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/i18n/zh_CN.po -------------------------------------------------------------------------------- /web_m2x_options/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/models/__init__.py -------------------------------------------------------------------------------- /web_m2x_options/models/ir_config_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/models/ir_config_parameter.py -------------------------------------------------------------------------------- /web_m2x_options/models/ir_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/models/ir_http.py -------------------------------------------------------------------------------- /web_m2x_options/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/pyproject.toml -------------------------------------------------------------------------------- /web_m2x_options/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_m2x_options/readme/CREDITS.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_m2x_options/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_m2x_options/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_m2x_options/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/readme/USAGE.md -------------------------------------------------------------------------------- /web_m2x_options/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/static/description/icon.png -------------------------------------------------------------------------------- /web_m2x_options/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/static/description/index.html -------------------------------------------------------------------------------- /web_m2x_options/static/src/components/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/static/src/components/base.xml -------------------------------------------------------------------------------- /web_m2x_options/static/src/components/form.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/static/src/components/form.esm.js -------------------------------------------------------------------------------- /web_m2x_options/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2020 initOS GmbH. 2 | from . import test_ir_config_parameter 3 | -------------------------------------------------------------------------------- /web_m2x_options/tests/test_ir_config_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options/tests/test_ir_config_parameter.py -------------------------------------------------------------------------------- /web_m2x_options_manager/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/README.rst -------------------------------------------------------------------------------- /web_m2x_options_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/__init__.py -------------------------------------------------------------------------------- /web_m2x_options_manager/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/__manifest__.py -------------------------------------------------------------------------------- /web_m2x_options_manager/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/hooks.py -------------------------------------------------------------------------------- /web_m2x_options_manager/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/i18n/it.po -------------------------------------------------------------------------------- /web_m2x_options_manager/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/models/__init__.py -------------------------------------------------------------------------------- /web_m2x_options_manager/models/ir_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/models/ir_model.py -------------------------------------------------------------------------------- /web_m2x_options_manager/models/ir_model_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/models/ir_model_fields.py -------------------------------------------------------------------------------- /web_m2x_options_manager/models/ir_ui_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/models/ir_ui_view.py -------------------------------------------------------------------------------- /web_m2x_options_manager/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/pyproject.toml -------------------------------------------------------------------------------- /web_m2x_options_manager/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_m2x_options_manager/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_m2x_options_manager/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/readme/USAGE.md -------------------------------------------------------------------------------- /web_m2x_options_manager/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/security/ir.model.access.csv -------------------------------------------------------------------------------- /web_m2x_options_manager/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/static/description/icon.png -------------------------------------------------------------------------------- /web_m2x_options_manager/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/tests/__init__.py -------------------------------------------------------------------------------- /web_m2x_options_manager/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/tests/common.py -------------------------------------------------------------------------------- /web_m2x_options_manager/tests/test_ir_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/tests/test_ir_model.py -------------------------------------------------------------------------------- /web_m2x_options_manager/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/tools.py -------------------------------------------------------------------------------- /web_m2x_options_manager/views/ir_model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_m2x_options_manager/views/ir_model.xml -------------------------------------------------------------------------------- /web_no_bubble/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_no_bubble/README.rst -------------------------------------------------------------------------------- /web_no_bubble/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_no_bubble/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_no_bubble/__manifest__.py -------------------------------------------------------------------------------- /web_no_bubble/i18n/es.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_no_bubble/i18n/fr_FR.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_no_bubble/i18n/hr.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_no_bubble/i18n/it.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_no_bubble/i18n/web_no_bubble.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_no_bubble/i18n/web_no_bubble.pot -------------------------------------------------------------------------------- /web_no_bubble/i18n/zh_CN.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_no_bubble/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_no_bubble/pyproject.toml -------------------------------------------------------------------------------- /web_no_bubble/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_no_bubble/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_no_bubble/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_no_bubble/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_no_bubble/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_no_bubble/static/description/icon.png -------------------------------------------------------------------------------- /web_no_bubble/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_no_bubble/static/description/index.html -------------------------------------------------------------------------------- /web_no_bubble/static/src/css/web_no_bubble.scss: -------------------------------------------------------------------------------- 1 | .o_tour_pointer { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /web_notify/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/README.rst -------------------------------------------------------------------------------- /web_notify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/__init__.py -------------------------------------------------------------------------------- /web_notify/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/__manifest__.py -------------------------------------------------------------------------------- /web_notify/i18n/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/i18n/da.po -------------------------------------------------------------------------------- /web_notify/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/i18n/de.po -------------------------------------------------------------------------------- /web_notify/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/i18n/es.po -------------------------------------------------------------------------------- /web_notify/i18n/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/i18n/hr.po -------------------------------------------------------------------------------- /web_notify/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/i18n/it.po -------------------------------------------------------------------------------- /web_notify/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/i18n/nl.po -------------------------------------------------------------------------------- /web_notify/i18n/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/i18n/nl_NL.po -------------------------------------------------------------------------------- /web_notify/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/i18n/pt_BR.po -------------------------------------------------------------------------------- /web_notify/i18n/web_notify.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/i18n/web_notify.pot -------------------------------------------------------------------------------- /web_notify/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/i18n/zh_CN.po -------------------------------------------------------------------------------- /web_notify/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import res_users 2 | -------------------------------------------------------------------------------- /web_notify/models/res_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/models/res_users.py -------------------------------------------------------------------------------- /web_notify/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/pyproject.toml -------------------------------------------------------------------------------- /web_notify/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_notify/readme/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/readme/CREDITS.md -------------------------------------------------------------------------------- /web_notify/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_notify/readme/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/readme/INSTALL.md -------------------------------------------------------------------------------- /web_notify/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/readme/USAGE.md -------------------------------------------------------------------------------- /web_notify/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/static/description/icon.png -------------------------------------------------------------------------------- /web_notify/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/static/description/index.html -------------------------------------------------------------------------------- /web_notify/static/img/notifications_screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/static/img/notifications_screenshot.gif -------------------------------------------------------------------------------- /web_notify/static/img/test_notifications_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/static/img/test_notifications_demo.png -------------------------------------------------------------------------------- /web_notify/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/tests/__init__.py -------------------------------------------------------------------------------- /web_notify/tests/test_res_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/tests/test_res_users.py -------------------------------------------------------------------------------- /web_notify/views/res_users_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify/views/res_users_demo.xml -------------------------------------------------------------------------------- /web_notify_channel_message/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_channel_message/README.rst -------------------------------------------------------------------------------- /web_notify_channel_message/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /web_notify_channel_message/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_channel_message/__manifest__.py -------------------------------------------------------------------------------- /web_notify_channel_message/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_channel_message/i18n/es.po -------------------------------------------------------------------------------- /web_notify_channel_message/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_channel_message/i18n/fr.po -------------------------------------------------------------------------------- /web_notify_channel_message/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_channel_message/i18n/it.po -------------------------------------------------------------------------------- /web_notify_channel_message/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_channel_message/models/__init__.py -------------------------------------------------------------------------------- /web_notify_channel_message/models/discuss_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_channel_message/models/discuss_channel.py -------------------------------------------------------------------------------- /web_notify_channel_message/models/res_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_channel_message/models/res_users.py -------------------------------------------------------------------------------- /web_notify_channel_message/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_channel_message/pyproject.toml -------------------------------------------------------------------------------- /web_notify_channel_message/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_channel_message/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_notify_channel_message/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_channel_message/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_notify_channel_message/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_notify_channel_message 2 | -------------------------------------------------------------------------------- /web_notify_upgrade/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_upgrade/README.rst -------------------------------------------------------------------------------- /web_notify_upgrade/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /web_notify_upgrade/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_upgrade/__manifest__.py -------------------------------------------------------------------------------- /web_notify_upgrade/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_upgrade/i18n/fr.po -------------------------------------------------------------------------------- /web_notify_upgrade/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_upgrade/i18n/it.po -------------------------------------------------------------------------------- /web_notify_upgrade/i18n/web_notify_upgrade.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_upgrade/i18n/web_notify_upgrade.pot -------------------------------------------------------------------------------- /web_notify_upgrade/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ir_model 2 | -------------------------------------------------------------------------------- /web_notify_upgrade/models/ir_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_upgrade/models/ir_model.py -------------------------------------------------------------------------------- /web_notify_upgrade/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_upgrade/pyproject.toml -------------------------------------------------------------------------------- /web_notify_upgrade/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_upgrade/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_notify_upgrade/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_upgrade/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_notify_upgrade/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_upgrade/static/description/icon.png -------------------------------------------------------------------------------- /web_notify_upgrade/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_upgrade/static/description/index.html -------------------------------------------------------------------------------- /web_notify_upgrade/static/description/notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_notify_upgrade/static/description/notify.png -------------------------------------------------------------------------------- /web_pivot_computed_measure/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pivot_computed_measure/README.rst -------------------------------------------------------------------------------- /web_pivot_computed_measure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_pivot_computed_measure/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pivot_computed_measure/__manifest__.py -------------------------------------------------------------------------------- /web_pivot_computed_measure/i18n/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pivot_computed_measure/i18n/ca.po -------------------------------------------------------------------------------- /web_pivot_computed_measure/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pivot_computed_measure/i18n/es.po -------------------------------------------------------------------------------- /web_pivot_computed_measure/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pivot_computed_measure/i18n/it.po -------------------------------------------------------------------------------- /web_pivot_computed_measure/i18n/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pivot_computed_measure/i18n/tr.po -------------------------------------------------------------------------------- /web_pivot_computed_measure/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pivot_computed_measure/pyproject.toml -------------------------------------------------------------------------------- /web_pivot_computed_measure/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pivot_computed_measure/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_pivot_computed_measure/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | Adds support for computed measures on the pivot view. 2 | -------------------------------------------------------------------------------- /web_pivot_computed_measure/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pivot_computed_measure/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_pivot_computed_measure/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pivot_computed_measure/readme/USAGE.md -------------------------------------------------------------------------------- /web_pivot_computed_measure/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_ui_pivot 2 | -------------------------------------------------------------------------------- /web_pivot_computed_measure/tests/test_ui_pivot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pivot_computed_measure/tests/test_ui_pivot.py -------------------------------------------------------------------------------- /web_pwa_customize/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/README.rst -------------------------------------------------------------------------------- /web_pwa_customize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/__init__.py -------------------------------------------------------------------------------- /web_pwa_customize/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/__manifest__.py -------------------------------------------------------------------------------- /web_pwa_customize/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | from . import webmanifest 2 | -------------------------------------------------------------------------------- /web_pwa_customize/controllers/webmanifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/controllers/webmanifest.py -------------------------------------------------------------------------------- /web_pwa_customize/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/i18n/es.po -------------------------------------------------------------------------------- /web_pwa_customize/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/i18n/it.po -------------------------------------------------------------------------------- /web_pwa_customize/i18n/web_pwa_customize.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/i18n/web_pwa_customize.pot -------------------------------------------------------------------------------- /web_pwa_customize/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import res_config_settings 2 | -------------------------------------------------------------------------------- /web_pwa_customize/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/models/res_config_settings.py -------------------------------------------------------------------------------- /web_pwa_customize/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/pyproject.toml -------------------------------------------------------------------------------- /web_pwa_customize/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/readme/CONFIGURE.md -------------------------------------------------------------------------------- /web_pwa_customize/readme/CONTEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/readme/CONTEXT.md -------------------------------------------------------------------------------- /web_pwa_customize/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_pwa_customize/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_pwa_customize/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/static/description/icon.png -------------------------------------------------------------------------------- /web_pwa_customize/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/static/description/index.html -------------------------------------------------------------------------------- /web_pwa_customize/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/tests/__init__.py -------------------------------------------------------------------------------- /web_pwa_customize/tests/test_web_pwa_customize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_pwa_customize/tests/test_web_pwa_customize.py -------------------------------------------------------------------------------- /web_quick_start_screen/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/README.rst -------------------------------------------------------------------------------- /web_quick_start_screen/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /web_quick_start_screen/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/__manifest__.py -------------------------------------------------------------------------------- /web_quick_start_screen/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/i18n/es.po -------------------------------------------------------------------------------- /web_quick_start_screen/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/i18n/it.po -------------------------------------------------------------------------------- /web_quick_start_screen/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/models/__init__.py -------------------------------------------------------------------------------- /web_quick_start_screen/models/quick_start_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/models/quick_start_screen.py -------------------------------------------------------------------------------- /web_quick_start_screen/models/res_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/models/res_users.py -------------------------------------------------------------------------------- /web_quick_start_screen/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/pyproject.toml -------------------------------------------------------------------------------- /web_quick_start_screen/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/readme/CONFIGURE.md -------------------------------------------------------------------------------- /web_quick_start_screen/readme/CONTEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/readme/CONTEXT.md -------------------------------------------------------------------------------- /web_quick_start_screen/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_quick_start_screen/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_quick_start_screen/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_quick_start_screen/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/readme/USAGE.md -------------------------------------------------------------------------------- /web_quick_start_screen/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/security/ir.model.access.csv -------------------------------------------------------------------------------- /web_quick_start_screen/security/security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/security/security.xml -------------------------------------------------------------------------------- /web_quick_start_screen/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/static/description/icon.png -------------------------------------------------------------------------------- /web_quick_start_screen/static/description/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/static/description/icon.svg -------------------------------------------------------------------------------- /web_quick_start_screen/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/static/description/index.html -------------------------------------------------------------------------------- /web_quick_start_screen/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/tests/__init__.py -------------------------------------------------------------------------------- /web_quick_start_screen/views/res_users_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_quick_start_screen/views/res_users_views.xml -------------------------------------------------------------------------------- /web_refresher/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/README.rst -------------------------------------------------------------------------------- /web_refresher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_refresher/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/__manifest__.py -------------------------------------------------------------------------------- /web_refresher/i18n/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/i18n/ca.po -------------------------------------------------------------------------------- /web_refresher/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/i18n/de.po -------------------------------------------------------------------------------- /web_refresher/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/i18n/es.po -------------------------------------------------------------------------------- /web_refresher/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/i18n/fr.po -------------------------------------------------------------------------------- /web_refresher/i18n/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/i18n/hr.po -------------------------------------------------------------------------------- /web_refresher/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/i18n/it.po -------------------------------------------------------------------------------- /web_refresher/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/i18n/pt_BR.po -------------------------------------------------------------------------------- /web_refresher/i18n/uk_UA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/i18n/uk_UA.po -------------------------------------------------------------------------------- /web_refresher/i18n/web_refresher.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/i18n/web_refresher.pot -------------------------------------------------------------------------------- /web_refresher/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/pyproject.toml -------------------------------------------------------------------------------- /web_refresher/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_refresher/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_refresher/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/static/description/icon.png -------------------------------------------------------------------------------- /web_refresher/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/static/description/index.html -------------------------------------------------------------------------------- /web_refresher/static/description/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/static/description/refresh.png -------------------------------------------------------------------------------- /web_refresher/static/src/js/control_panel.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/static/src/js/control_panel.esm.js -------------------------------------------------------------------------------- /web_refresher/static/src/js/refresher.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/static/src/js/refresher.esm.js -------------------------------------------------------------------------------- /web_refresher/static/src/scss/refresher.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/static/src/scss/refresher.scss -------------------------------------------------------------------------------- /web_refresher/static/src/xml/control_panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/static/src/xml/control_panel.xml -------------------------------------------------------------------------------- /web_refresher/static/src/xml/refresher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_refresher/static/src/xml/refresher.xml -------------------------------------------------------------------------------- /web_remember_tree_column_width/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_remember_tree_column_width/README.rst -------------------------------------------------------------------------------- /web_remember_tree_column_width/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_remember_tree_column_width/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_remember_tree_column_width/__manifest__.py -------------------------------------------------------------------------------- /web_remember_tree_column_width/i18n/it.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_remember_tree_column_width/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_remember_tree_column_width/pyproject.toml -------------------------------------------------------------------------------- /web_remember_tree_column_width/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_remember_tree_column_width/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_responsive/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/README.rst -------------------------------------------------------------------------------- /web_responsive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/__init__.py -------------------------------------------------------------------------------- /web_responsive/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/__manifest__.py -------------------------------------------------------------------------------- /web_responsive/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/ar.po -------------------------------------------------------------------------------- /web_responsive/i18n/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/ca.po -------------------------------------------------------------------------------- /web_responsive/i18n/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/da.po -------------------------------------------------------------------------------- /web_responsive/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/de.po -------------------------------------------------------------------------------- /web_responsive/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/es.po -------------------------------------------------------------------------------- /web_responsive/i18n/es_VE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/es_VE.po -------------------------------------------------------------------------------- /web_responsive/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/fr.po -------------------------------------------------------------------------------- /web_responsive/i18n/fr_BE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/fr_BE.po -------------------------------------------------------------------------------- /web_responsive/i18n/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/fr_FR.po -------------------------------------------------------------------------------- /web_responsive/i18n/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/hr.po -------------------------------------------------------------------------------- /web_responsive/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/it.po -------------------------------------------------------------------------------- /web_responsive/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/nl.po -------------------------------------------------------------------------------- /web_responsive/i18n/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/pl.po -------------------------------------------------------------------------------- /web_responsive/i18n/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/pt.po -------------------------------------------------------------------------------- /web_responsive/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/pt_BR.po -------------------------------------------------------------------------------- /web_responsive/i18n/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/ru.po -------------------------------------------------------------------------------- /web_responsive/i18n/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/tr.po -------------------------------------------------------------------------------- /web_responsive/i18n/uk_UA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/uk_UA.po -------------------------------------------------------------------------------- /web_responsive/i18n/web_responsive.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/web_responsive.pot -------------------------------------------------------------------------------- /web_responsive/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/i18n/zh_CN.po -------------------------------------------------------------------------------- /web_responsive/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/models/__init__.py -------------------------------------------------------------------------------- /web_responsive/models/ir_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/models/ir_http.py -------------------------------------------------------------------------------- /web_responsive/models/res_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/models/res_users.py -------------------------------------------------------------------------------- /web_responsive/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/pyproject.toml -------------------------------------------------------------------------------- /web_responsive/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_responsive/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_responsive/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_responsive/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/readme/USAGE.md -------------------------------------------------------------------------------- /web_responsive/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/description/icon.png -------------------------------------------------------------------------------- /web_responsive/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/description/index.html -------------------------------------------------------------------------------- /web_responsive/static/img/appmenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/appmenu.gif -------------------------------------------------------------------------------- /web_responsive/static/img/appsearch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/appsearch.gif -------------------------------------------------------------------------------- /web_responsive/static/img/breadcrumbs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/breadcrumbs.gif -------------------------------------------------------------------------------- /web_responsive/static/img/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/calendar.gif -------------------------------------------------------------------------------- /web_responsive/static/img/chatter-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/chatter-colors.png -------------------------------------------------------------------------------- /web_responsive/static/img/chatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/chatter.png -------------------------------------------------------------------------------- /web_responsive/static/img/chatter_sided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/chatter_sided.gif -------------------------------------------------------------------------------- /web_responsive/static/img/chatter_topbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/chatter_topbar.gif -------------------------------------------------------------------------------- /web_responsive/static/img/default_icon_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/default_icon_app.png -------------------------------------------------------------------------------- /web_responsive/static/img/device_rotation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/device_rotation.gif -------------------------------------------------------------------------------- /web_responsive/static/img/document_viewer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/document_viewer.gif -------------------------------------------------------------------------------- /web_responsive/static/img/dropdown_scroll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/dropdown_scroll.gif -------------------------------------------------------------------------------- /web_responsive/static/img/form_buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/form_buttons.gif -------------------------------------------------------------------------------- /web_responsive/static/img/formview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/formview.gif -------------------------------------------------------------------------------- /web_responsive/static/img/hamburger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/hamburger.gif -------------------------------------------------------------------------------- /web_responsive/static/img/kanban.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/kanban.gif -------------------------------------------------------------------------------- /web_responsive/static/img/label_size_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/label_size_large.png -------------------------------------------------------------------------------- /web_responsive/static/img/label_size_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/label_size_small.png -------------------------------------------------------------------------------- /web_responsive/static/img/listview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/listview.gif -------------------------------------------------------------------------------- /web_responsive/static/img/mobile_search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/mobile_search.gif -------------------------------------------------------------------------------- /web_responsive/static/img/navbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/navbar.gif -------------------------------------------------------------------------------- /web_responsive/static/img/redirecthome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/redirecthome.gif -------------------------------------------------------------------------------- /web_responsive/static/img/search_panel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/search_panel.gif -------------------------------------------------------------------------------- /web_responsive/static/img/shortcuts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/shortcuts.gif -------------------------------------------------------------------------------- /web_responsive/static/img/usermenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/img/usermenu.gif -------------------------------------------------------------------------------- /web_responsive/static/src/clickbot/clickbot.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/src/clickbot/clickbot.esm.js -------------------------------------------------------------------------------- /web_responsive/static/src/legacy/scss/big_boxes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/src/legacy/scss/big_boxes.scss -------------------------------------------------------------------------------- /web_responsive/static/src/lib/fuse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/src/lib/fuse/LICENSE -------------------------------------------------------------------------------- /web_responsive/static/src/lib/fuse/fuse.basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/src/lib/fuse/fuse.basic.js -------------------------------------------------------------------------------- /web_responsive/static/src/lib/fuse/fuse.basic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/src/lib/fuse/fuse.basic.min.js -------------------------------------------------------------------------------- /web_responsive/static/tests/apps_menu_tests.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/static/tests/apps_menu_tests.esm.js -------------------------------------------------------------------------------- /web_responsive/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/tests/__init__.py -------------------------------------------------------------------------------- /web_responsive/tests/test_ir_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/tests/test_ir_http.py -------------------------------------------------------------------------------- /web_responsive/tests/test_res_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/tests/test_res_users.py -------------------------------------------------------------------------------- /web_responsive/views/res_users_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_responsive/views/res_users_views.xml -------------------------------------------------------------------------------- /web_save_discard_button/README.md: -------------------------------------------------------------------------------- 1 | # Save Discard Button 2 | -------------------------------------------------------------------------------- /web_save_discard_button/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_save_discard_button/README.rst -------------------------------------------------------------------------------- /web_save_discard_button/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_save_discard_button/__init__.py -------------------------------------------------------------------------------- /web_save_discard_button/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_save_discard_button/__manifest__.py -------------------------------------------------------------------------------- /web_save_discard_button/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_save_discard_button/i18n/es.po -------------------------------------------------------------------------------- /web_save_discard_button/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_save_discard_button/i18n/fr.po -------------------------------------------------------------------------------- /web_save_discard_button/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_save_discard_button/i18n/it.po -------------------------------------------------------------------------------- /web_save_discard_button/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_save_discard_button/models/__init__.py -------------------------------------------------------------------------------- /web_save_discard_button/models/ir_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_save_discard_button/models/ir_http.py -------------------------------------------------------------------------------- /web_save_discard_button/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_save_discard_button/pyproject.toml -------------------------------------------------------------------------------- /web_save_discard_button/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_save_discard_button/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_save_discard_button/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_save_discard_button/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_save_discard_button/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_save_discard_button/static/description/icon.png -------------------------------------------------------------------------------- /web_save_discard_button/static/src/xml/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_save_discard_button/static/src/xml/template.xml -------------------------------------------------------------------------------- /web_search_with_and/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_search_with_and/README.rst -------------------------------------------------------------------------------- /web_search_with_and/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_search_with_and/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_search_with_and/__manifest__.py -------------------------------------------------------------------------------- /web_search_with_and/i18n/es.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_search_with_and/i18n/it.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_search_with_and/i18n/pt.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_search_with_and/i18n/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_search_with_and/i18n/tr.po -------------------------------------------------------------------------------- /web_search_with_and/i18n/web_search_with_and.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_search_with_and/i18n/web_search_with_and.pot -------------------------------------------------------------------------------- /web_search_with_and/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_search_with_and/pyproject.toml -------------------------------------------------------------------------------- /web_search_with_and/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_search_with_and/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_search_with_and/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_search_with_and/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_search_with_and/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_search_with_and/readme/USAGE.md -------------------------------------------------------------------------------- /web_search_with_and/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_search_with_and/static/description/icon.png -------------------------------------------------------------------------------- /web_search_with_and/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_search_with_and/static/description/index.html -------------------------------------------------------------------------------- /web_search_with_and/static/src/js/search_bar.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_search_with_and/static/src/js/search_bar.esm.js -------------------------------------------------------------------------------- /web_send_message_popup/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_send_message_popup/README.rst -------------------------------------------------------------------------------- /web_send_message_popup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_send_message_popup/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_send_message_popup/__manifest__.py -------------------------------------------------------------------------------- /web_send_message_popup/i18n/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_send_message_popup/i18n/fa.po -------------------------------------------------------------------------------- /web_send_message_popup/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_send_message_popup/i18n/it.po -------------------------------------------------------------------------------- /web_send_message_popup/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_send_message_popup/pyproject.toml -------------------------------------------------------------------------------- /web_send_message_popup/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_send_message_popup/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_send_message_popup/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_send_message_popup/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_send_message_popup/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_send_message_popup/static/description/icon.png -------------------------------------------------------------------------------- /web_send_message_popup/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_send_message_popup/static/description/index.html -------------------------------------------------------------------------------- /web_session_auto_close/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_session_auto_close/README.rst -------------------------------------------------------------------------------- /web_session_auto_close/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_session_auto_close/__init__.py -------------------------------------------------------------------------------- /web_session_auto_close/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_session_auto_close/__manifest__.py -------------------------------------------------------------------------------- /web_session_auto_close/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | from . import main 2 | -------------------------------------------------------------------------------- /web_session_auto_close/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_session_auto_close/controllers/main.py -------------------------------------------------------------------------------- /web_session_auto_close/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_session_auto_close/i18n/it.po -------------------------------------------------------------------------------- /web_session_auto_close/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import res_config_settings 2 | -------------------------------------------------------------------------------- /web_session_auto_close/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_session_auto_close/models/res_config_settings.py -------------------------------------------------------------------------------- /web_session_auto_close/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_session_auto_close/pyproject.toml -------------------------------------------------------------------------------- /web_session_auto_close/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_session_auto_close/readme/CONFIGURE.md -------------------------------------------------------------------------------- /web_session_auto_close/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_session_auto_close/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_session_auto_close/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_session_auto_close/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_session_auto_close/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_session_auto_close/static/description/icon.png -------------------------------------------------------------------------------- /web_session_auto_close/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_session_auto_close/static/description/index.html -------------------------------------------------------------------------------- /web_session_auto_close/views/res_config_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_session_auto_close/views/res_config_settings.xml -------------------------------------------------------------------------------- /web_systray_button_init_action/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_systray_button_init_action/README.rst -------------------------------------------------------------------------------- /web_systray_button_init_action/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_systray_button_init_action/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_systray_button_init_action/__manifest__.py -------------------------------------------------------------------------------- /web_systray_button_init_action/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_systray_button_init_action/i18n/it.po -------------------------------------------------------------------------------- /web_systray_button_init_action/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_systray_button_init_action/pyproject.toml -------------------------------------------------------------------------------- /web_systray_button_init_action/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_systray_button_init_action/readme/CONFIGURE.md -------------------------------------------------------------------------------- /web_systray_button_init_action/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_systray_button_init_action/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_systray_button_init_action/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_web_systray_button_init_action 2 | -------------------------------------------------------------------------------- /web_theme_classic/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_theme_classic/README.rst -------------------------------------------------------------------------------- /web_theme_classic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_theme_classic/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_theme_classic/__manifest__.py -------------------------------------------------------------------------------- /web_theme_classic/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_theme_classic/i18n/it.po -------------------------------------------------------------------------------- /web_theme_classic/i18n/web_theme_classic.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_theme_classic/i18n/web_theme_classic.pot -------------------------------------------------------------------------------- /web_theme_classic/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_theme_classic/pyproject.toml -------------------------------------------------------------------------------- /web_theme_classic/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_theme_classic/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_theme_classic/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_theme_classic/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_theme_classic/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_theme_classic/static/description/icon.png -------------------------------------------------------------------------------- /web_theme_classic/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_theme_classic/static/description/index.html -------------------------------------------------------------------------------- /web_timeline/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/README.rst -------------------------------------------------------------------------------- /web_timeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/__init__.py -------------------------------------------------------------------------------- /web_timeline/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/__manifest__.py -------------------------------------------------------------------------------- /web_timeline/demo/ir_cron_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/demo/ir_cron_view.xml -------------------------------------------------------------------------------- /web_timeline/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/i18n/de.po -------------------------------------------------------------------------------- /web_timeline/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/i18n/es.po -------------------------------------------------------------------------------- /web_timeline/i18n/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/i18n/fa.po -------------------------------------------------------------------------------- /web_timeline/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/i18n/fr.po -------------------------------------------------------------------------------- /web_timeline/i18n/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/i18n/he.po -------------------------------------------------------------------------------- /web_timeline/i18n/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/i18n/hr.po -------------------------------------------------------------------------------- /web_timeline/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/i18n/it.po -------------------------------------------------------------------------------- /web_timeline/i18n/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/i18n/nl_NL.po -------------------------------------------------------------------------------- /web_timeline/i18n/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/i18n/pt.po -------------------------------------------------------------------------------- /web_timeline/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/i18n/pt_BR.po -------------------------------------------------------------------------------- /web_timeline/i18n/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/i18n/tr.po -------------------------------------------------------------------------------- /web_timeline/i18n/web_timeline.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/i18n/web_timeline.pot -------------------------------------------------------------------------------- /web_timeline/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/i18n/zh_CN.po -------------------------------------------------------------------------------- /web_timeline/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/models/__init__.py -------------------------------------------------------------------------------- /web_timeline/models/ir_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/models/ir_action.py -------------------------------------------------------------------------------- /web_timeline/models/ir_ui_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/models/ir_ui_view.py -------------------------------------------------------------------------------- /web_timeline/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/pyproject.toml -------------------------------------------------------------------------------- /web_timeline/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/readme/CONFIGURE.md -------------------------------------------------------------------------------- /web_timeline/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_timeline/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_timeline/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_timeline/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/readme/USAGE.md -------------------------------------------------------------------------------- /web_timeline/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/static/description/icon.png -------------------------------------------------------------------------------- /web_timeline/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/static/description/index.html -------------------------------------------------------------------------------- /web_timeline/static/tests/helpers.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/static/tests/helpers.esm.js -------------------------------------------------------------------------------- /web_timeline/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_web_timeline 2 | -------------------------------------------------------------------------------- /web_timeline/tests/test_web_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_timeline/tests/test_web_timeline.py -------------------------------------------------------------------------------- /web_touchscreen/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_touchscreen/README.rst -------------------------------------------------------------------------------- /web_touchscreen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_touchscreen/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_touchscreen/__manifest__.py -------------------------------------------------------------------------------- /web_touchscreen/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_touchscreen/i18n/it.po -------------------------------------------------------------------------------- /web_touchscreen/i18n/web_touchscreen.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_touchscreen/i18n/web_touchscreen.pot -------------------------------------------------------------------------------- /web_touchscreen/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_touchscreen/pyproject.toml -------------------------------------------------------------------------------- /web_touchscreen/readme/CONTEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_touchscreen/readme/CONTEXT.md -------------------------------------------------------------------------------- /web_touchscreen/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_touchscreen/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_touchscreen/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_touchscreen/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_touchscreen/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_touchscreen/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_touchscreen/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_touchscreen/readme/USAGE.md -------------------------------------------------------------------------------- /web_touchscreen/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_touchscreen/static/description/icon.png -------------------------------------------------------------------------------- /web_touchscreen/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_touchscreen/static/description/index.html -------------------------------------------------------------------------------- /web_touchscreen/static/src/fields.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_touchscreen/static/src/fields.esm.js -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_dynamic_colored_field/README.rst -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_dynamic_colored_field/__init__.py -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_dynamic_colored_field/__manifest__.py -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/demo/res_users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_dynamic_colored_field/demo/res_users.xml -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_dynamic_colored_field/i18n/es.po -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/i18n/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_dynamic_colored_field/i18n/fi.po -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/i18n/fr.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/i18n/it.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/i18n/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_dynamic_colored_field/i18n/nl_NL.po -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/i18n/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_dynamic_colored_field/i18n/sl.po -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/i18n/zh_CN.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_dynamic_colored_field/pyproject.toml -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/readme/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_dynamic_colored_field/readme/CREDITS.md -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_dynamic_colored_field/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_dynamic_colored_field/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_tree_dynamic_colored_field/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_dynamic_colored_field/readme/USAGE.md -------------------------------------------------------------------------------- /web_tree_many2one_clickable/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_many2one_clickable/README.rst -------------------------------------------------------------------------------- /web_tree_many2one_clickable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_many2one_clickable/__init__.py -------------------------------------------------------------------------------- /web_tree_many2one_clickable/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_many2one_clickable/__manifest__.py -------------------------------------------------------------------------------- /web_tree_many2one_clickable/i18n/it.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_tree_many2one_clickable/i18n/zh_CN.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_tree_many2one_clickable/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_many2one_clickable/pyproject.toml -------------------------------------------------------------------------------- /web_tree_many2one_clickable/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_many2one_clickable/readme/CONFIGURE.md -------------------------------------------------------------------------------- /web_tree_many2one_clickable/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_many2one_clickable/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_tree_many2one_clickable/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_many2one_clickable/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_tree_many2one_clickable/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_many2one_clickable/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_tree_many2one_clickable/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_many2one_clickable/readme/USAGE.md -------------------------------------------------------------------------------- /web_tree_many2one_clickable/static/img/clickable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_tree_many2one_clickable/static/img/clickable.gif -------------------------------------------------------------------------------- /web_widget_bokeh_chart/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_bokeh_chart/README.rst -------------------------------------------------------------------------------- /web_widget_bokeh_chart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_bokeh_chart/__init__.py -------------------------------------------------------------------------------- /web_widget_bokeh_chart/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_bokeh_chart/__manifest__.py -------------------------------------------------------------------------------- /web_widget_bokeh_chart/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_bokeh_chart/i18n/it.po -------------------------------------------------------------------------------- /web_widget_bokeh_chart/i18n/zh_CN.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_widget_bokeh_chart/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_bokeh_chart/pyproject.toml -------------------------------------------------------------------------------- /web_widget_bokeh_chart/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_bokeh_chart/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_widget_bokeh_chart/readme/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_bokeh_chart/readme/CREDITS.md -------------------------------------------------------------------------------- /web_widget_bokeh_chart/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_bokeh_chart/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_widget_bokeh_chart/readme/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_bokeh_chart/readme/INSTALL.md -------------------------------------------------------------------------------- /web_widget_bokeh_chart/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_bokeh_chart/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_widget_bokeh_chart/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_bokeh_chart/readme/USAGE.md -------------------------------------------------------------------------------- /web_widget_bokeh_chart/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_bokeh_chart/static/description/icon.png -------------------------------------------------------------------------------- /web_widget_bokeh_chart/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_bokeh_chart/static/description/index.html -------------------------------------------------------------------------------- /web_widget_bokeh_chart/static/src/xml/bokeh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_bokeh_chart/static/src/xml/bokeh.xml -------------------------------------------------------------------------------- /web_widget_domain_editor_dialog/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_domain_editor_dialog/README.rst -------------------------------------------------------------------------------- /web_widget_domain_editor_dialog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_widget_domain_editor_dialog/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_domain_editor_dialog/__manifest__.py -------------------------------------------------------------------------------- /web_widget_domain_editor_dialog/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_domain_editor_dialog/i18n/es.po -------------------------------------------------------------------------------- /web_widget_domain_editor_dialog/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_domain_editor_dialog/i18n/it.po -------------------------------------------------------------------------------- /web_widget_domain_editor_dialog/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_domain_editor_dialog/i18n/zh_CN.po -------------------------------------------------------------------------------- /web_widget_domain_editor_dialog/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_domain_editor_dialog/pyproject.toml -------------------------------------------------------------------------------- /web_widget_domain_editor_dialog/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_domain_editor_dialog/readme/USAGE.md -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/README.rst -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/__init__.py -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/__manifest__.py -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/demo/ir_filters_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/demo/ir_filters_view.xml -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/i18n/de.po -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/i18n/es.po -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/i18n/it.po -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/i18n/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/i18n/tr.po -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/models/__init__.py -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/models/ir_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/models/ir_filters.py -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/pyproject.toml -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/readme/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/readme/CREDITS.md -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_widget_dropdown_dynamic/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_dropdown_dynamic/readme/USAGE.md -------------------------------------------------------------------------------- /web_widget_mpld3_chart/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_mpld3_chart/README.rst -------------------------------------------------------------------------------- /web_widget_mpld3_chart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_mpld3_chart/__init__.py -------------------------------------------------------------------------------- /web_widget_mpld3_chart/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_mpld3_chart/__manifest__.py -------------------------------------------------------------------------------- /web_widget_mpld3_chart/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_mpld3_chart/i18n/es.po -------------------------------------------------------------------------------- /web_widget_mpld3_chart/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_mpld3_chart/i18n/it.po -------------------------------------------------------------------------------- /web_widget_mpld3_chart/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import abstract_mpld3_parser 2 | -------------------------------------------------------------------------------- /web_widget_mpld3_chart/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_mpld3_chart/pyproject.toml -------------------------------------------------------------------------------- /web_widget_mpld3_chart/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_mpld3_chart/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_widget_mpld3_chart/readme/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_mpld3_chart/readme/CREDITS.md -------------------------------------------------------------------------------- /web_widget_mpld3_chart/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_mpld3_chart/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_widget_mpld3_chart/readme/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_mpld3_chart/readme/INSTALL.md -------------------------------------------------------------------------------- /web_widget_mpld3_chart/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_mpld3_chart/readme/USAGE.md -------------------------------------------------------------------------------- /web_widget_mpld3_chart/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_mpld3_chart/static/description/icon.png -------------------------------------------------------------------------------- /web_widget_mpld3_chart/static/src/lib/d3/d3.v5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_mpld3_chart/static/src/lib/d3/d3.v5.js -------------------------------------------------------------------------------- /web_widget_numeric_step/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_numeric_step/README.rst -------------------------------------------------------------------------------- /web_widget_numeric_step/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_widget_numeric_step/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_numeric_step/__manifest__.py -------------------------------------------------------------------------------- /web_widget_numeric_step/demo/ir_cron.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_numeric_step/demo/ir_cron.xml -------------------------------------------------------------------------------- /web_widget_numeric_step/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_numeric_step/i18n/de.po -------------------------------------------------------------------------------- /web_widget_numeric_step/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_numeric_step/i18n/es.po -------------------------------------------------------------------------------- /web_widget_numeric_step/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_numeric_step/i18n/fr.po -------------------------------------------------------------------------------- /web_widget_numeric_step/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_numeric_step/i18n/it.po -------------------------------------------------------------------------------- /web_widget_numeric_step/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_numeric_step/pyproject.toml -------------------------------------------------------------------------------- /web_widget_numeric_step/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_numeric_step/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_widget_numeric_step/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_numeric_step/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_widget_numeric_step/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_numeric_step/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_widget_numeric_step/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_numeric_step/readme/USAGE.md -------------------------------------------------------------------------------- /web_widget_one2many_tree_line_duplicate/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_one2many_tree_line_duplicate/README.rst -------------------------------------------------------------------------------- /web_widget_one2many_tree_line_duplicate/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_one2many_tree_line_duplicate/i18n/it.po -------------------------------------------------------------------------------- /web_widget_open_tab/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/README.rst -------------------------------------------------------------------------------- /web_widget_open_tab/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /web_widget_open_tab/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/__manifest__.py -------------------------------------------------------------------------------- /web_widget_open_tab/demo/res_users_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/demo/res_users_view.xml -------------------------------------------------------------------------------- /web_widget_open_tab/i18n/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/i18n/ca.po -------------------------------------------------------------------------------- /web_widget_open_tab/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/i18n/de.po -------------------------------------------------------------------------------- /web_widget_open_tab/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/i18n/es.po -------------------------------------------------------------------------------- /web_widget_open_tab/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/i18n/it.po -------------------------------------------------------------------------------- /web_widget_open_tab/i18n/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/i18n/ja.po -------------------------------------------------------------------------------- /web_widget_open_tab/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/i18n/pt_BR.po -------------------------------------------------------------------------------- /web_widget_open_tab/i18n/web_widget_open_tab.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/i18n/web_widget_open_tab.pot -------------------------------------------------------------------------------- /web_widget_open_tab/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/models/__init__.py -------------------------------------------------------------------------------- /web_widget_open_tab/models/ir_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/models/ir_model.py -------------------------------------------------------------------------------- /web_widget_open_tab/models/ir_ui_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/models/ir_ui_view.py -------------------------------------------------------------------------------- /web_widget_open_tab/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/pyproject.toml -------------------------------------------------------------------------------- /web_widget_open_tab/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_widget_open_tab/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_widget_open_tab/readme/ROADMAP.md: -------------------------------------------------------------------------------- 1 | - Add many2one fields support. 2 | -------------------------------------------------------------------------------- /web_widget_open_tab/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/readme/USAGE.md -------------------------------------------------------------------------------- /web_widget_open_tab/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/static/description/icon.png -------------------------------------------------------------------------------- /web_widget_open_tab/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/static/description/index.html -------------------------------------------------------------------------------- /web_widget_open_tab/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_main 2 | -------------------------------------------------------------------------------- /web_widget_open_tab/tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/tests/test_main.py -------------------------------------------------------------------------------- /web_widget_open_tab/views/ir_model_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_open_tab/views/ir_model_views.xml -------------------------------------------------------------------------------- /web_widget_popover/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_popover/README.rst -------------------------------------------------------------------------------- /web_widget_popover/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_widget_popover/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_popover/__manifest__.py -------------------------------------------------------------------------------- /web_widget_popover/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_popover/i18n/it.po -------------------------------------------------------------------------------- /web_widget_popover/i18n/web_widget_popover.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_popover/i18n/web_widget_popover.pot -------------------------------------------------------------------------------- /web_widget_popover/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_popover/pyproject.toml -------------------------------------------------------------------------------- /web_widget_popover/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_popover/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_widget_popover/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_popover/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_widget_popover/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_popover/readme/USAGE.md -------------------------------------------------------------------------------- /web_widget_popover/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_popover/static/description/icon.png -------------------------------------------------------------------------------- /web_widget_popover/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_popover/static/description/index.html -------------------------------------------------------------------------------- /web_widget_popover/static/src/popover.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_popover/static/src/popover.esm.js -------------------------------------------------------------------------------- /web_widget_popover/static/src/popover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_popover/static/src/popover.xml -------------------------------------------------------------------------------- /web_widget_product_label_section_and_note_name_visibility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_widget_product_label_section_and_note_name_visibility/readme/ROADMAP.md: -------------------------------------------------------------------------------- 1 | - Add compatibility with purchase_product_matrix module 2 | -------------------------------------------------------------------------------- /web_widget_url_advanced/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_url_advanced/README.rst -------------------------------------------------------------------------------- /web_widget_url_advanced/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_widget_url_advanced/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_url_advanced/__manifest__.py -------------------------------------------------------------------------------- /web_widget_url_advanced/i18n/es.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_widget_url_advanced/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_url_advanced/i18n/it.po -------------------------------------------------------------------------------- /web_widget_url_advanced/i18n/zh_CN.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_widget_url_advanced/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_url_advanced/pyproject.toml -------------------------------------------------------------------------------- /web_widget_url_advanced/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_url_advanced/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_widget_url_advanced/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_url_advanced/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_widget_url_advanced/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_url_advanced/readme/USAGE.md -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/README.rst -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/__init__.py -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/__manifest__.py -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/i18n/ar.po -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/i18n/de.po -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/i18n/es.po -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/i18n/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/i18n/fi.po -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/i18n/fr.po -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/i18n/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/i18n/hr.po -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/i18n/it.po -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/i18n/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/i18n/lt.po -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/i18n/nl.po -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/i18n/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/i18n/nl_NL.po -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/i18n/pt_BR.po -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/i18n/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/i18n/sl.po -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/i18n/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/i18n/tr.po -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/i18n/zh_CN.po -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/pyproject.toml -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/readme/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/readme/HISTORY.md -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/readme/ROADMAP.md -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/web/HEAD/web_widget_x2many_2d_matrix/readme/USAGE.md -------------------------------------------------------------------------------- /web_widget_x2many_2d_matrix/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_web_widget_x2many_2d_matrix 2 | --------------------------------------------------------------------------------