3
0
Fork 0

Compare commits

...

No commits in common. "17.0" and "16.0" have entirely different histories.
17.0 ... 16.0

1511 changed files with 93927 additions and 33181 deletions

View File

@ -1,9 +1,8 @@
# Do NOT update manually; changes here will be overwritten by Copier
_commit: v1.24
_commit: v1.21.1
_src_path: gh:oca/oca-addons-repo-template
additional_ruff_rules: []
ci: GitHub
convert_readme_fragments_to_markdown: true
convert_readme_fragments_to_markdown: false
generate_requirements_txt: true
github_check_license: true
github_ci_extra_env: {}
@ -13,7 +12,7 @@ github_enable_stale_action: true
github_enforce_dev_status_compatibility: true
include_wkhtmltopdf: false
odoo_test_flavor: Both
odoo_version: 17.0
odoo_version: 16.0
org_name: Odoo Community Association (OCA)
org_slug: OCA
rebel_module_groups: []
@ -21,6 +20,6 @@ repo_description: 'TODO: add repo description.'
repo_name: web
repo_slug: web
repo_website: https://github.com/OCA/web
use_pyproject_toml: true
use_ruff: true
use_pyproject_toml: false
use_ruff: false

View File

@ -4,7 +4,7 @@ env:
# See https://github.com/OCA/odoo-community.org/issues/37#issuecomment-470686449
parserOptions:
ecmaVersion: 2022
ecmaVersion: 2019
overrides:
- files:

12
.flake8 100644
View File

@ -0,0 +1,12 @@
[flake8]
max-line-length = 88
max-complexity = 16
# B = bugbear
# B9 = bugbear opinionated (incl line length)
select = C,E,F,W,B,B9
# E203: whitespace before ':' (black behaviour)
# E501: flake8 line length (covered by bugbear B950)
# W503: line break before binary operator (black behaviour)
ignore = E203,E501,W503
per-file-ignores=
__init__.py:F401

View File

@ -3,11 +3,11 @@ name: pre-commit
on:
pull_request:
branches:
- "17.0*"
- "16.0*"
push:
branches:
- "17.0"
- "17.0-ocabot-*"
- "16.0"
- "16.0-ocabot-*"
jobs:
pre-commit:

View File

@ -3,11 +3,11 @@ name: tests
on:
pull_request:
branches:
- "17.0*"
- "16.0*"
push:
branches:
- "17.0"
- "17.0-ocabot-*"
- "16.0"
- "16.0-ocabot-*"
jobs:
unreleased-deps:
@ -35,9 +35,9 @@ jobs:
fail-fast: false
matrix:
include:
- container: ghcr.io/oca/oca-ci/py3.10-odoo17.0:latest
- container: ghcr.io/oca/oca-ci/py3.10-odoo16.0:latest
name: test with Odoo
- container: ghcr.io/oca/oca-ci/py3.10-ocb17.0:latest
- container: ghcr.io/oca/oca-ci/py3.10-ocb16.0:latest
name: test with OCB
makepot: "true"
services:

9
.gitignore vendored
View File

@ -25,15 +25,6 @@ var/
*.egg
*.eggs
# Debian packages
*.deb
# Redhat packages
*.rpm
# MacOS packages
*.dmg
# Installer logs
pip-log.txt
pip-delete-this-directory.txt

13
.isort.cfg 100644
View File

@ -0,0 +1,13 @@
[settings]
; see https://github.com/psf/black
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
combine_as_imports=True
use_parentheses=True
line_length=88
known_odoo=odoo
known_odoo_addons=odoo.addons
sections=FUTURE,STDLIB,THIRDPARTY,ODOO,ODOO_ADDONS,FIRSTPARTY,LOCALFOLDER
default_section=THIRDPARTY
ensure_newline_before_comments = True

View File

@ -0,0 +1,5 @@
{
"pull_requests": {
"1724": "(auto) Nothing to port from PR #1724"
}
}

View File

@ -38,12 +38,8 @@ repos:
entry: found a en.po file
language: fail
files: '[a-zA-Z0-9_]*/i18n/en\.po$'
- repo: https://github.com/sbidoul/whool
rev: v0.5
hooks:
- id: whool-init
- repo: https://github.com/oca/maintainer-tools
rev: d5fab7ee87fceee858a3d01048c78a548974d935
rev: 9a170331575a265c092ee6b24b845ec508e8ef75
hooks:
# update the NOT INSTALLABLE ADDONS section above
- id: oca-update-pre-commit-excluded-addons
@ -52,18 +48,31 @@ repos:
- id: oca-gen-addon-readme
args:
- --addons-dir=.
- --branch=17.0
- --branch=16.0
- --org-name=OCA
- --repo-name=web
- --if-source-changed
- --keep-source-digest
- --convert-fragments-to-markdown
- id: oca-gen-external-dependencies
- repo: https://github.com/OCA/odoo-pre-commit-hooks
rev: v0.0.25
hooks:
- id: oca-checks-odoo-module
- id: oca-checks-po
- repo: https://github.com/myint/autoflake
rev: v1.6.1
hooks:
- id: autoflake
args:
- --expand-star-imports
- --ignore-init-module-imports
- --in-place
- --remove-all-unused-imports
- --remove-duplicate-keys
- --remove-unused-variables
- repo: https://github.com/psf/black
rev: 22.8.0
hooks:
- id: black
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.7.1
hooks:
@ -105,14 +114,37 @@ repos:
- id: check-xml
- id: mixed-line-ending
args: ["--fix=lf"]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.3
- repo: https://github.com/asottile/pyupgrade
rev: v2.38.2
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format
- id: pyupgrade
args: ["--keep-percent-format"]
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
- id: isort
name: isort except __init__.py
args:
- --settings=.
exclude: /__init__\.py$
- repo: https://github.com/acsone/setuptools-odoo
rev: 3.1.8
hooks:
- id: setuptools-odoo-make-default
- id: setuptools-odoo-get-requirements
args:
- --output
- requirements.txt
- --header
- "# generated from manifests external_dependencies"
- repo: https://github.com/PyCQA/flake8
rev: 3.9.2
hooks:
- id: flake8
name: flake8
additional_dependencies: ["flake8-bugbear==21.9.2"]
- repo: https://github.com/OCA/pylint-odoo
rev: v9.0.4
rev: v8.0.19
hooks:
- id: pylint_odoo
name: pylint with optional checks

View File

@ -10,7 +10,7 @@ manifest-required-authors=Odoo Community Association (OCA)
manifest-required-keys=license
manifest-deprecated-keys=description,active
license-allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3
valid-odoo-versions=17.0
valid-odoo-versions=16.0
[MESSAGES CONTROL]
disable=all

View File

@ -9,7 +9,7 @@ manifest-required-authors=Odoo Community Association (OCA)
manifest-required-keys=license
manifest-deprecated-keys=description,active
license-allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3
valid-odoo-versions=17.0
valid-odoo-versions=16.0
[MESSAGES CONTROL]
disable=all

View File

@ -1,30 +0,0 @@
target-version = "py310"
fix = true
[lint]
extend-select = [
"B",
"C90",
"E501", # line too long (default 88)
"I", # isort
"UP", # pyupgrade
]
exclude = ["setup/*"]
[format]
exclude = ["setup/*"]
[per-file-ignores]
"__init__.py" = ["F401", "I001"] # ignore unused and unsorted imports in __init__.py
"__manifest__.py" = ["B018"] # useless expression
[isort]
section-order = ["future", "standard-library", "third-party", "odoo", "odoo-addons", "first-party", "local-folder"]
[isort.sections]
"odoo" = ["odoo"]
"odoo-addons" = ["odoo.addons"]
[mccabe]
max-complexity = 16

103
README.md
View File

@ -1,9 +1,9 @@
[![Runboat](https://img.shields.io/badge/runboat-Try%20me-875A7B.png)](https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=17.0)
[![Pre-commit Status](https://github.com/OCA/web/actions/workflows/pre-commit.yml/badge.svg?branch=17.0)](https://github.com/OCA/web/actions/workflows/pre-commit.yml?query=branch%3A17.0)
[![Build Status](https://github.com/OCA/web/actions/workflows/test.yml/badge.svg?branch=17.0)](https://github.com/OCA/web/actions/workflows/test.yml?query=branch%3A17.0)
[![codecov](https://codecov.io/gh/OCA/web/branch/17.0/graph/badge.svg)](https://codecov.io/gh/OCA/web)
[![Translation Status](https://translation.odoo-community.org/widgets/web-17-0/-/svg-badge.svg)](https://translation.odoo-community.org/engage/web-17-0/?utm_source=widget)
[![Runboat](https://img.shields.io/badge/runboat-Try%20me-875A7B.png)](https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0)
[![Pre-commit Status](https://github.com/OCA/web/actions/workflows/pre-commit.yml/badge.svg?branch=16.0)](https://github.com/OCA/web/actions/workflows/pre-commit.yml?query=branch%3A16.0)
[![Build Status](https://github.com/OCA/web/actions/workflows/test.yml/badge.svg?branch=16.0)](https://github.com/OCA/web/actions/workflows/test.yml?query=branch%3A16.0)
[![codecov](https://codecov.io/gh/OCA/web/branch/16.0/graph/badge.svg)](https://codecov.io/gh/OCA/web)
[![Translation Status](https://translation.odoo-community.org/widgets/web-16-0/-/svg-badge.svg)](https://translation.odoo-community.org/engage/web-16-0/?utm_source=widget)
<!-- /!\ do not modify above this line -->
@ -21,34 +21,71 @@ Available addons
----------------
addon | version | maintainers | summary
--- | --- | --- | ---
[web_calendar_slot_duration](web_calendar_slot_duration/) | 17.0.1.0.0 | [![Yajo](https://github.com/Yajo.png?size=30px)](https://github.com/Yajo) | Customizable calendar slot durations
[web_chatter_position](web_chatter_position/) | 17.0.1.0.1 | [![trisdoan](https://github.com/trisdoan.png?size=30px)](https://github.com/trisdoan) | Add an option to change the chatter position
[web_dialog_size](web_dialog_size/) | 17.0.1.0.0 | | A module that lets the user expand a dialog box to the full screen width.
[web_editor_class_selector](web_editor_class_selector/) | 17.0.1.0.0 | | Web editor class selector
[web_environment_ribbon](web_environment_ribbon/) | 17.0.1.0.2 | | Web Environment Ribbon
[web_favicon](web_favicon/) | 17.0.1.0.2 | | Allows to set a custom shortcut icon (aka favicon)
[web_field_tooltip](web_field_tooltip/) | 17.0.1.0.0 | | Displays customizable tooltips for fields
[web_group_expand](web_group_expand/) | 17.0.1.0.0 | | Group Expand Buttons
[web_m2x_options](web_m2x_options/) | 17.0.1.0.5 | | web_m2x_options
[web_no_bubble](web_no_bubble/) | 17.0.1.0.0 | | Remove the bubbles from the web interface
[web_notify](web_notify/) | 17.0.1.0.0 | | Send notification messages to user
[web_refresher](web_refresher/) | 17.0.1.1.2 | | Web Refresher
[web_remember_tree_column_width](web_remember_tree_column_width/) | 17.0.1.0.0 | [![frahikLV](https://github.com/frahikLV.png?size=30px)](https://github.com/frahikLV) [![luisg123v](https://github.com/luisg123v.png?size=30px)](https://github.com/luisg123v) [![cuongnmtm](https://github.com/cuongnmtm.png?size=30px)](https://github.com/cuongnmtm) | Remember the tree columns' widths across sessions.
[web_responsive](web_responsive/) | 17.0.1.1.3 | [![Tardo](https://github.com/Tardo.png?size=30px)](https://github.com/Tardo) [![SplashS](https://github.com/SplashS.png?size=30px)](https://github.com/SplashS) | Responsive web client, community-supported
[web_theme_classic](web_theme_classic/) | 17.0.1.0.0 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) | Contrasted style on fields to improve the UI.
[web_time_range_menu_custom](web_time_range_menu_custom/) | 17.0.1.0.0 | | Web Time Range Menu Custom
[web_timeline](web_timeline/) | 17.0.1.0.1 | [![tarteo](https://github.com/tarteo.png?size=30px)](https://github.com/tarteo) | Interactive visualization chart to show events in time
[web_tree_dynamic_colored_field](web_tree_dynamic_colored_field/) | 17.0.1.0.0 | | Allows you to dynamically color fields on tree views
[web_tree_many2one_clickable](web_tree_many2one_clickable/) | 17.0.1.0.0 | | Open the linked resource when clicking on their name
[web_widget_bokeh_chart](web_widget_bokeh_chart/) | 17.0.1.0.0 | [![LoisRForgeFlow](https://github.com/LoisRForgeFlow.png?size=30px)](https://github.com/LoisRForgeFlow) [![ChrisOForgeFlow](https://github.com/ChrisOForgeFlow.png?size=30px)](https://github.com/ChrisOForgeFlow) | This widget allows to display charts using Bokeh library.
[web_widget_domain_editor_dialog](web_widget_domain_editor_dialog/) | 17.0.1.0.0 | | Recovers the Domain Editor Dialog functionality
[web_widget_dropdown_dynamic](web_widget_dropdown_dynamic/) | 17.0.1.0.0 | | This module adds support for dynamic dropdown widget
[web_widget_image_download](web_widget_image_download/) | 17.0.1.0.0 | | Allows to download any image from its widget
[web_widget_numeric_step](web_widget_numeric_step/) | 17.0.1.0.0 | [![rafaelbn](https://github.com/rafaelbn.png?size=30px)](https://github.com/rafaelbn) [![yajo](https://github.com/yajo.png?size=30px)](https://github.com/yajo) | Web Widget Numeric Step
[web_widget_open_tab](web_widget_open_tab/) | 17.0.1.0.0 | | Allow to open record from trees on new tab from tree views
[web_widget_plotly_chart](web_widget_plotly_chart/) | 17.0.1.0.0 | [![robyf70](https://github.com/robyf70.png?size=30px)](https://github.com/robyf70) | Allow to draw plotly charts.
[web_widget_url_advanced](web_widget_url_advanced/) | 17.0.1.0.0 | | This module extends URL widget for displaying anchors with custom labels.
[web_widget_x2many_2d_matrix](web_widget_x2many_2d_matrix/) | 17.0.1.0.0 | [![ChrisOForgeFlow](https://github.com/ChrisOForgeFlow.png?size=30px)](https://github.com/ChrisOForgeFlow) | Show list fields as a matrix
[web_action_conditionable](web_action_conditionable/) | 16.0.1.0.0 | | web_action_conditionable
[web_advanced_search](web_advanced_search/) | 16.0.1.0.6 | [![ivantodorovich](https://github.com/ivantodorovich.png?size=30px)](https://github.com/ivantodorovich) | Easier and more powerful searching tools
[web_apply_field_style](web_apply_field_style/) | 16.0.1.0.1 | | Apply css class style to fields from a dict parameters
[web_calendar_slot_duration](web_calendar_slot_duration/) | 16.0.1.1.0 | [![Yajo](https://github.com/Yajo.png?size=30px)](https://github.com/Yajo) | Customizable calendar slot durations
[web_chatter_position](web_chatter_position/) | 16.0.1.0.2 | | Add an option to change the chatter position
[web_company_color](web_company_color/) | 16.0.1.2.3 | | Web Company Color
[web_copy_confirm](web_copy_confirm/) | 16.0.1.0.0 | | Show confirmation dialogue before copying records
[web_dark_mode](web_dark_mode/) | 16.0.1.0.2 | | Enabled Dark Mode for the Odoo Backend
[web_dashboard_tile](web_dashboard_tile/) | 16.0.1.0.2 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) | Add Overview Dashboards with Tiles
[web_datetime_picker_default_time](web_datetime_picker_default_time/) | 16.0.1.0.0 | [![grindtildeath](https://github.com/grindtildeath.png?size=30px)](https://github.com/grindtildeath) | Allows to define a default time on datetime picker
[web_dialog_size](web_dialog_size/) | 16.0.1.0.1 | | A module that lets the user expand a dialog box to the full screen width.
[web_disable_export_group](web_disable_export_group/) | 16.0.1.0.0 | | Web Disable Export Group
[web_domain_field](web_domain_field/) | 16.0.1.0.1 | | Use computed field as domain
[web_editor_class_selector](web_editor_class_selector/) | 16.0.1.0.1 | | Web editor class selector
[web_environment_ribbon](web_environment_ribbon/) | 16.0.1.0.0 | | Web Environment Ribbon
[web_field_numeric_formatting](web_field_numeric_formatting/) | 16.0.1.0.0 | | Allow to render float and integer fields without thousands separator
[web_field_tooltip](web_field_tooltip/) | 16.0.1.1.0 | | Displays customizable tooltips for fields
[web_group_expand](web_group_expand/) | 16.0.1.0.0 | | Group Expand Buttons
[web_help](web_help/) | 16.0.2.0.0 | | Help Framework
[web_hide_field_with_key](web_hide_field_with_key/) | 16.0.1.0.1 | [![franzpoize](https://github.com/franzpoize.png?size=30px)](https://github.com/franzpoize) | Hide fields for models
[web_ir_actions_act_multi](web_ir_actions_act_multi/) | 16.0.1.0.0 | | Enables triggering of more than one action on ActionManager
[web_ir_actions_act_window_message](web_ir_actions_act_window_message/) | 16.0.1.0.1 | | Show a message box to users
[web_ir_actions_act_window_page](web_ir_actions_act_window_page/) | 16.0.1.0.0 | | Allows a developer to trigger a pager to show the previous or next next record in the form view
[web_ir_actions_close_wizard_refresh_view](web_ir_actions_close_wizard_refresh_view/) | 16.0.1.0.0 | | Allow to refresh view data without reload the page.
[web_listview_range_select](web_listview_range_select/) | 16.0.1.0.0 | | Enables selecting a range of records using the shift key
[web_m2x_options](web_m2x_options/) | 16.0.1.1.3 | | web_m2x_options
[web_m2x_options_manager](web_m2x_options_manager/) | 16.0.1.0.0 | | Adds an interface to manage the "Create" and "Create and Edit" options for specific models and fields.
[web_no_bubble](web_no_bubble/) | 16.0.1.0.0 | | Remove the bubbles from the web interface
[web_notify](web_notify/) | 16.0.2.0.2 | | Send notification messages to user
[web_notify_channel_message](web_notify_channel_message/) | 16.0.1.0.0 | | Send an instant notification to channel users when a new message is posted
[web_notify_upgrade](web_notify_upgrade/) | 16.0.1.0.0 | | Notify active users when a module is installed or updated
[web_pivot_computed_measure](web_pivot_computed_measure/) | 16.0.1.0.0 | [![CarlosRoca13](https://github.com/CarlosRoca13.png?size=30px)](https://github.com/CarlosRoca13) | Web Pivot Computed Measure
[web_pwa_oca](web_pwa_oca/) | 16.0.1.0.0 | [![eLBati](https://github.com/eLBati.png?size=30px)](https://github.com/eLBati) | Make Odoo a PWA
[web_refresher](web_refresher/) | 16.0.3.1.3 | | Web Refresher
[web_remember_tree_column_width](web_remember_tree_column_width/) | 16.0.1.0.2 | [![frahikLV](https://github.com/frahikLV.png?size=30px)](https://github.com/frahikLV) [![luisg123v](https://github.com/luisg123v.png?size=30px)](https://github.com/luisg123v) [![cuongnmtm](https://github.com/cuongnmtm.png?size=30px)](https://github.com/cuongnmtm) | Remember the tree columns' widths across sessions.
[web_responsive](web_responsive/) | 16.0.1.3.2 | [![Tardo](https://github.com/Tardo.png?size=30px)](https://github.com/Tardo) [![SplashS](https://github.com/SplashS.png?size=30px)](https://github.com/SplashS) | Responsive web client, community-supported
[web_save_discard_button](web_save_discard_button/) | 16.0.1.0.2 | [![synconics](https://github.com/synconics.png?size=30px)](https://github.com/synconics) | Save & Discard Buttons
[web_search_with_and](web_search_with_and/) | 16.0.1.0.0 | | Use AND conditions on omnibar search
[web_select_all_companies](web_select_all_companies/) | 16.0.1.0.1 | | Allows you to select all companies in one click.
[web_send_message_popup](web_send_message_popup/) | 16.0.1.0.0 | | Web Send Message as Popup
[web_sheet_full_width](web_sheet_full_width/) | 16.0.1.0.0 | | Use the whole available screen width when displaying sheets
[web_theme_classic](web_theme_classic/) | 16.0.1.0.2 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) | Contrasted style on fields to improve the UI.
[web_time_range_menu_custom](web_time_range_menu_custom/) | 16.0.1.0.0 | | Web Time Range Menu Custom
[web_timeline](web_timeline/) | 16.0.1.1.6 | [![tarteo](https://github.com/tarteo.png?size=30px)](https://github.com/tarteo) | Interactive visualization chart to show events in time
[web_touchscreen](web_touchscreen/) | 16.0.1.0.1 | [![yajo](https://github.com/yajo.png?size=30px)](https://github.com/yajo) [![rafaelbn](https://github.com/rafaelbn.png?size=30px)](https://github.com/rafaelbn) | UX improvements for touch screens
[web_tree_duplicate](web_tree_duplicate/) | 16.0.1.0.1 | [![tarteo](https://github.com/tarteo.png?size=30px)](https://github.com/tarteo) | Duplicate records directly from the tree view.
[web_tree_many2one_clickable](web_tree_many2one_clickable/) | 16.0.1.0.0 | | Open the linked resource when clicking on their name
[web_widget_bokeh_chart](web_widget_bokeh_chart/) | 16.0.1.1.0 | [![LoisRForgeFlow](https://github.com/LoisRForgeFlow.png?size=30px)](https://github.com/LoisRForgeFlow) [![ChrisOForgeFlow](https://github.com/ChrisOForgeFlow.png?size=30px)](https://github.com/ChrisOForgeFlow) | This widget allows to display charts using Bokeh library.
[web_widget_char_size](web_widget_char_size/) | 16.0.1.0.0 | | Add size option to Char widget
[web_widget_datepicker_fulloptions](web_widget_datepicker_fulloptions/) | 16.0.1.0.0 | | Web Widget DatePicker Full Options
[web_widget_domain_editor_dialog](web_widget_domain_editor_dialog/) | 16.0.1.0.0 | | Recovers the Domain Editor Dialog functionality
[web_widget_dropdown_dynamic](web_widget_dropdown_dynamic/) | 16.0.1.0.0 | | This module adds support for dynamic dropdown widget
[web_widget_image_download](web_widget_image_download/) | 16.0.1.0.0 | | Allows to download any image from its widget
[web_widget_image_webcam](web_widget_image_webcam/) | 16.0.1.0.0 | | Allows to take image with WebCam
[web_widget_mpld3_chart](web_widget_mpld3_chart/) | 16.0.1.0.0 | [![JordiBForgeFlow](https://github.com/JordiBForgeFlow.png?size=30px)](https://github.com/JordiBForgeFlow) [![ChrisOForgeFlow](https://github.com/ChrisOForgeFlow.png?size=30px)](https://github.com/ChrisOForgeFlow) | This widget allows to display charts using MPLD3 library.
[web_widget_numeric_step](web_widget_numeric_step/) | 16.0.1.1.5 | [![rafaelbn](https://github.com/rafaelbn.png?size=30px)](https://github.com/rafaelbn) [![yajo](https://github.com/yajo.png?size=30px)](https://github.com/yajo) | Web Widget Numeric Step
[web_widget_one2many_tree_line_duplicate](web_widget_one2many_tree_line_duplicate/) | 16.0.1.0.0 | | Web Widget One2many Tree Line Duplicate
[web_widget_open_tab](web_widget_open_tab/) | 16.0.2.0.0 | | Allow to open record from trees on new tab from tree views
[web_widget_pattern](web_widget_pattern/) | 16.0.1.0.0 | [![hbrunn](https://github.com/hbrunn.png?size=30px)](https://github.com/hbrunn) | Allows to define a regex for validating input on the backend
[web_widget_pattern_partner_autocomplete](web_widget_pattern_partner_autocomplete/) | 16.0.1.0.0 | [![hbrunn](https://github.com/hbrunn.png?size=30px)](https://github.com/hbrunn) | Allows to define a regex for validating input on the backend
[web_widget_plotly_chart](web_widget_plotly_chart/) | 16.0.1.0.0 | [![robyf70](https://github.com/robyf70.png?size=30px)](https://github.com/robyf70) | Allow to draw plotly charts.
[web_widget_product_label_section_and_note](web_widget_product_label_section_and_note/) | 16.0.1.0.1 | | unify the product and name into a single column
[web_widget_progressbar_gradient](web_widget_progressbar_gradient/) | 16.0.1.0.0 | [![rousseldenis](https://github.com/rousseldenis.png?size=30px)](https://github.com/rousseldenis) | This module allows to display progressbar with gradient
[web_widget_remaining_days_exact_date](web_widget_remaining_days_exact_date/) | 16.0.1.0.0 | [![CarlosRoca13](https://github.com/CarlosRoca13.png?size=30px)](https://github.com/CarlosRoca13) | Allows displaying the exact date alongside the remaining days
[web_widget_x2many_2d_matrix](web_widget_x2many_2d_matrix/) | 16.0.1.1.3 | [![ChrisOForgeFlow](https://github.com/ChrisOForgeFlow.png?size=30px)](https://github.com/ChrisOForgeFlow) | Show list fields as a matrix
[//]: # (end addons)

View File

@ -1,3 +1,5 @@
# generated from manifests external_dependencies
bokeh==3.4.1
plotly==5.22.0
beautifulsoup4
bokeh==3.1.1
mpld3==0.5.9
plotly==5.13.1

View File

@ -0,0 +1,2 @@
# addons listed in this file are ignored by
# setuptools-odoo-make-default (one addon per line)

2
setup/README 100644
View File

@ -0,0 +1,2 @@
To learn more about this directory, please visit
https://pypi.python.org/pypi/setuptools-odoo

View File

@ -0,0 +1 @@
16.0.20241216.0

View File

@ -1,38 +0,0 @@
[project]
name = "odoo-addons-oca-web"
version = "17.0.20241211.0"
dependencies = [
"odoo-addon-web_calendar_slot_duration>=17.0dev,<17.1dev",
"odoo-addon-web_chatter_position>=17.0dev,<17.1dev",
"odoo-addon-web_dialog_size>=17.0dev,<17.1dev",
"odoo-addon-web_editor_class_selector>=17.0dev,<17.1dev",
"odoo-addon-web_environment_ribbon>=17.0dev,<17.1dev",
"odoo-addon-web_favicon>=17.0dev,<17.1dev",
"odoo-addon-web_field_tooltip>=17.0dev,<17.1dev",
"odoo-addon-web_group_expand>=17.0dev,<17.1dev",
"odoo-addon-web_m2x_options>=17.0dev,<17.1dev",
"odoo-addon-web_no_bubble>=17.0dev,<17.1dev",
"odoo-addon-web_notify>=17.0dev,<17.1dev",
"odoo-addon-web_refresher>=17.0dev,<17.1dev",
"odoo-addon-web_remember_tree_column_width>=17.0dev,<17.1dev",
"odoo-addon-web_responsive>=17.0dev,<17.1dev",
"odoo-addon-web_theme_classic>=17.0dev,<17.1dev",
"odoo-addon-web_time_range_menu_custom>=17.0dev,<17.1dev",
"odoo-addon-web_timeline>=17.0dev,<17.1dev",
"odoo-addon-web_tree_dynamic_colored_field>=17.0dev,<17.1dev",
"odoo-addon-web_tree_many2one_clickable>=17.0dev,<17.1dev",
"odoo-addon-web_widget_bokeh_chart>=17.0dev,<17.1dev",
"odoo-addon-web_widget_domain_editor_dialog>=17.0dev,<17.1dev",
"odoo-addon-web_widget_dropdown_dynamic>=17.0dev,<17.1dev",
"odoo-addon-web_widget_image_download>=17.0dev,<17.1dev",
"odoo-addon-web_widget_numeric_step>=17.0dev,<17.1dev",
"odoo-addon-web_widget_open_tab>=17.0dev,<17.1dev",
"odoo-addon-web_widget_plotly_chart>=17.0dev,<17.1dev",
"odoo-addon-web_widget_url_advanced>=17.0dev,<17.1dev",
"odoo-addon-web_widget_x2many_2d_matrix>=17.0dev,<17.1dev",
]
classifiers=[
"Programming Language :: Python",
"Framework :: Odoo",
"Framework :: Odoo :: 17.0",
]

View File

@ -0,0 +1,82 @@
import setuptools
with open('VERSION.txt', 'r') as f:
version = f.read().strip()
setuptools.setup(
name="odoo-addons-oca-web",
description="Meta package for oca-web Odoo addons",
version=version,
install_requires=[
'odoo-addon-web_action_conditionable>=16.0dev,<16.1dev',
'odoo-addon-web_advanced_search>=16.0dev,<16.1dev',
'odoo-addon-web_apply_field_style>=16.0dev,<16.1dev',
'odoo-addon-web_calendar_slot_duration>=16.0dev,<16.1dev',
'odoo-addon-web_chatter_position>=16.0dev,<16.1dev',
'odoo-addon-web_company_color>=16.0dev,<16.1dev',
'odoo-addon-web_copy_confirm>=16.0dev,<16.1dev',
'odoo-addon-web_dark_mode>=16.0dev,<16.1dev',
'odoo-addon-web_dashboard_tile>=16.0dev,<16.1dev',
'odoo-addon-web_datetime_picker_default_time>=16.0dev,<16.1dev',
'odoo-addon-web_dialog_size>=16.0dev,<16.1dev',
'odoo-addon-web_disable_export_group>=16.0dev,<16.1dev',
'odoo-addon-web_domain_field>=16.0dev,<16.1dev',
'odoo-addon-web_editor_class_selector>=16.0dev,<16.1dev',
'odoo-addon-web_environment_ribbon>=16.0dev,<16.1dev',
'odoo-addon-web_field_numeric_formatting>=16.0dev,<16.1dev',
'odoo-addon-web_field_tooltip>=16.0dev,<16.1dev',
'odoo-addon-web_group_expand>=16.0dev,<16.1dev',
'odoo-addon-web_help>=16.0dev,<16.1dev',
'odoo-addon-web_hide_field_with_key>=16.0dev,<16.1dev',
'odoo-addon-web_ir_actions_act_multi>=16.0dev,<16.1dev',
'odoo-addon-web_ir_actions_act_window_message>=16.0dev,<16.1dev',
'odoo-addon-web_ir_actions_act_window_page>=16.0dev,<16.1dev',
'odoo-addon-web_ir_actions_close_wizard_refresh_view>=16.0dev,<16.1dev',
'odoo-addon-web_listview_range_select>=16.0dev,<16.1dev',
'odoo-addon-web_m2x_options>=16.0dev,<16.1dev',
'odoo-addon-web_m2x_options_manager>=16.0dev,<16.1dev',
'odoo-addon-web_no_bubble>=16.0dev,<16.1dev',
'odoo-addon-web_notify>=16.0dev,<16.1dev',
'odoo-addon-web_notify_channel_message>=16.0dev,<16.1dev',
'odoo-addon-web_notify_upgrade>=16.0dev,<16.1dev',
'odoo-addon-web_pivot_computed_measure>=16.0dev,<16.1dev',
'odoo-addon-web_pwa_oca>=16.0dev,<16.1dev',
'odoo-addon-web_refresher>=16.0dev,<16.1dev',
'odoo-addon-web_remember_tree_column_width>=16.0dev,<16.1dev',
'odoo-addon-web_responsive>=16.0dev,<16.1dev',
'odoo-addon-web_save_discard_button>=16.0dev,<16.1dev',
'odoo-addon-web_search_with_and>=16.0dev,<16.1dev',
'odoo-addon-web_select_all_companies>=16.0dev,<16.1dev',
'odoo-addon-web_send_message_popup>=16.0dev,<16.1dev',
'odoo-addon-web_sheet_full_width>=16.0dev,<16.1dev',
'odoo-addon-web_theme_classic>=16.0dev,<16.1dev',
'odoo-addon-web_time_range_menu_custom>=16.0dev,<16.1dev',
'odoo-addon-web_timeline>=16.0dev,<16.1dev',
'odoo-addon-web_touchscreen>=16.0dev,<16.1dev',
'odoo-addon-web_tree_duplicate>=16.0dev,<16.1dev',
'odoo-addon-web_tree_many2one_clickable>=16.0dev,<16.1dev',
'odoo-addon-web_widget_bokeh_chart>=16.0dev,<16.1dev',
'odoo-addon-web_widget_char_size>=16.0dev,<16.1dev',
'odoo-addon-web_widget_datepicker_fulloptions>=16.0dev,<16.1dev',
'odoo-addon-web_widget_domain_editor_dialog>=16.0dev,<16.1dev',
'odoo-addon-web_widget_dropdown_dynamic>=16.0dev,<16.1dev',
'odoo-addon-web_widget_image_download>=16.0dev,<16.1dev',
'odoo-addon-web_widget_image_webcam>=16.0dev,<16.1dev',
'odoo-addon-web_widget_mpld3_chart>=16.0dev,<16.1dev',
'odoo-addon-web_widget_numeric_step>=16.0dev,<16.1dev',
'odoo-addon-web_widget_one2many_tree_line_duplicate>=16.0dev,<16.1dev',
'odoo-addon-web_widget_open_tab>=16.0dev,<16.1dev',
'odoo-addon-web_widget_pattern>=16.0dev,<16.1dev',
'odoo-addon-web_widget_pattern_partner_autocomplete>=16.0dev,<16.1dev',
'odoo-addon-web_widget_plotly_chart>=16.0dev,<16.1dev',
'odoo-addon-web_widget_product_label_section_and_note>=16.0dev,<16.1dev',
'odoo-addon-web_widget_progressbar_gradient>=16.0dev,<16.1dev',
'odoo-addon-web_widget_remaining_days_exact_date>=16.0dev,<16.1dev',
'odoo-addon-web_widget_x2many_2d_matrix>=16.0dev,<16.1dev',
],
classifiers=[
'Programming Language :: Python',
'Framework :: Odoo',
'Framework :: Odoo :: 16.0',
]
)

View File

@ -0,0 +1 @@
../../../../web_action_conditionable

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_advanced_search

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_apply_field_style

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_calendar_slot_duration

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_chatter_position

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_company_color

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_copy_confirm

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_dark_mode

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_dashboard_tile

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_datetime_picker_default_time

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_dialog_size

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_disable_export_group

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_domain_field

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_editor_class_selector

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_environment_ribbon

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_field_numeric_formatting

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_field_tooltip

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_group_expand

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_help

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_hide_field_with_key

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_ir_actions_act_multi

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_ir_actions_act_window_message

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_ir_actions_act_window_page

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_ir_actions_close_wizard_refresh_view

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_listview_range_select

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_m2x_options

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_m2x_options_manager

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_no_bubble

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_notify

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_notify_channel_message

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_notify_upgrade

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_pivot_computed_measure

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_pwa_oca

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_refresher

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_remember_tree_column_width

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_responsive

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_save_discard_button

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_search_with_and

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_select_all_companies

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_send_message_popup

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -0,0 +1 @@
../../../../web_sheet_full_width

Some files were not shown because too many files have changed in this diff Show More