Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# generated from manifests external_dependencies
bokeh==2.3.1
bokeh==2.4.2
mpld3
plotly==5.4.0
13 changes: 9 additions & 4 deletions web_widget_bokeh_chart/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Web Widget Bokeh Chart
:target: https://runbot.odoo-community.org/runbot/162/14.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|
|badge1| |badge2| |badge3| |badge4| |badge5|

This module add the possibility to insert Bokeh charts into Odoo standard views.

Expand Down Expand Up @@ -52,7 +52,7 @@ Installation

You need to install the python bokeh library::

pip3 install bokeh==2.3.1
pip3 install bokeh==2.4.2

Usage
=====
Expand All @@ -75,7 +75,7 @@ To insert a Bokeh chart in a view proceed as follows:
line = p.line([0, 2], [1, 8], line_width=5)
# (...)
# fill the record field with both markup and the script of a chart.
script, div = components(p)
script, div = components(p, wrap_script=False)
rec.bokeh_chart = '%s%s' % (div, script)

#. In the view, add something like this wherever you want to display your
Expand Down Expand Up @@ -109,6 +109,7 @@ Contributors
* Jordi Ballester Alomar <jordi.ballester@forgeflow.com>
* Lois Rilo Antelo <lois.rilo@forgeflow.com>
* Artem Kostyuk <a.kostyuk@mobilunity.com>
* Christopher ormaza <chris.ormaza@forgeflow.com>

Other credits
~~~~~~~~~~~~~
Expand All @@ -134,10 +135,14 @@ promote its widespread use.
.. |maintainer-LoisRForgeFlow| image:: https://github.com/LoisRForgeFlow.png?size=40px
:target: https://github.com/LoisRForgeFlow
:alt: LoisRForgeFlow
.. |maintainer-ChrisOForgeFlow| image:: https://github.com/ChrisOForgeFlow.png?size=40px
:target: https://github.com/ChrisOForgeFlow
:alt: ChrisOForgeFlow

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-LoisRForgeFlow|
|maintainer-LoisRForgeFlow|
|maintainer-ChrisOForgeFlow|

This module is part of the `OCA/web <https://github.com/OCA/web/tree/14.0/web_widget_bokeh_chart>`_ project on GitHub.

Expand Down
6 changes: 3 additions & 3 deletions web_widget_bokeh_chart/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"category": "Hidden",
"summary": "This widget allows to display charts using Bokeh library.",
"author": "ForgeFlow, " "Odoo Community Association (OCA)",
"version": "14.0.2.3.1",
"maintainers": ["LoisRForgeFlow"],
"version": "14.0.2.3.2",
"maintainers": ["LoisRForgeFlow", "ChrisOForgeFlow"],
"development_status": "Production/Stable",
"website": "https://github.com/OCA/web",
"depends": ["web"],
"data": ["views/web_widget_bokeh_chart.xml"],
"external_dependencies": {"python": ["bokeh==2.3.1"]},
"external_dependencies": {"python": ["bokeh==2.4.2"]},
"auto_install": False,
"license": "LGPL-3",
}
1 change: 1 addition & 0 deletions web_widget_bokeh_chart/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
* Jordi Ballester Alomar <jordi.ballester@forgeflow.com>
* Lois Rilo Antelo <lois.rilo@forgeflow.com>
* Artem Kostyuk <a.kostyuk@mobilunity.com>
* Christopher Ormaza <chris.ormaza@forgeflow.com>
2 changes: 1 addition & 1 deletion web_widget_bokeh_chart/readme/INSTALL.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
You need to install the python bokeh library::

pip3 install bokeh==2.3.1
pip3 install bokeh==2.4.2
2 changes: 1 addition & 1 deletion web_widget_bokeh_chart/readme/USAGE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To insert a Bokeh chart in a view proceed as follows:
line = p.line([0, 2], [1, 8], line_width=5)
# (...)
# fill the record field with both markup and the script of a chart.
script, div = components(p)
script, div = components(p, wrap_script=False)
rec.bokeh_chart = '%s%s' % (div, script)

#. In the view, add something like this wherever you want to display your
Expand Down
594 changes: 0 additions & 594 deletions web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-2.3.1.min.js

This file was deleted.

596 changes: 596 additions & 0 deletions web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-2.4.2.min.js

Large diffs are not rendered by default.

54 changes: 0 additions & 54 deletions web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-api-2.3.1.min.js

This file was deleted.

53 changes: 53 additions & 0 deletions web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-api-2.4.2.min.js

Large diffs are not rendered by default.

74 changes: 74 additions & 0 deletions web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-gl-2.4.2.min.js

Large diffs are not rendered by default.

328 changes: 328 additions & 0 deletions web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-mathjax-2.4.2.min.js

Large diffs are not rendered by default.

132 changes: 132 additions & 0 deletions web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-tables-2.4.2.min.js

Large diffs are not rendered by default.

119 changes: 0 additions & 119 deletions web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-widgets-2.3.1.min.js

This file was deleted.

118 changes: 118 additions & 0 deletions web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-widgets-2.4.2.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions web_widget_bokeh_chart/views/web_widget_bokeh_chart.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
<xpath expr="." position="inside">
<script
type="text/javascript"
src="/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-2.3.1.min.js"
src="/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-2.4.2.min.js"
/>
<script
type="text/javascript"
src="/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-widgets-2.3.1.min.js"
src="/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-widgets-2.4.2.min.js"
/>
<script
type="text/javascript"
src="/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-api-2.3.1.min.js"
src="/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-api-2.4.2.min.js"
/>
<script
type="text/javascript"
Expand Down