Skip to content

Commit

Permalink
[MIG] web_timeline: Migration to 13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thoongnv committed Dec 30, 2019
1 parent c8892c1 commit cc35a0b
Show file tree
Hide file tree
Showing 18 changed files with 187 additions and 165 deletions.
2 changes: 1 addition & 1 deletion .isort.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ line_length=88
known_odoo=odoo
known_odoo_addons=odoo.addons
sections=FUTURE,STDLIB,THIRDPARTY,ODOO,ODOO_ADDONS,FIRSTPARTY,LOCALFOLDER
known_third_party=openerp,setuptools
known_third_party=setuptools
6 changes: 4 additions & 2 deletions web_timeline/README.rst
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Web timeline
:target: https://runbot.odoo-community.org/runbot/162/12.0
:alt: Try me on Runbot

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

Define a new view displaying events in an interactive visualization chart.

Expand Down Expand Up @@ -173,6 +173,7 @@ Authors
* Tecnativa
* Monk Software
* Onestein
* Trobz

Contributors
~~~~~~~~~~~~
Expand All @@ -183,6 +184,7 @@ Contributors
* Leonardo Donelli <donelli@webmonks.it>
* Adrien Didenot <adrien.didenot@horanet.com>
* Dennis Sluijk <d.sluijk@onestein.nl>
* Thong Nguyen Van <thongnv@trobz.com>

Other credits
~~~~~~~~~~~~~
Expand Down Expand Up @@ -211,7 +213,7 @@ promote its widespread use.

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

|maintainer-tarteo|
|maintainer-tarteo|

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

Expand Down
7 changes: 4 additions & 3 deletions web_timeline/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,21 @@
{
"name": "Web timeline",
"summary": "Interactive visualization chart to show events in time",
"version": "12.0.1.0.5",
"version": "13.0.1.0.0",
"development_status": "Production/Stable",
"author": "ACSONE SA/NV, "
"Tecnativa, "
"Monk Software, "
"Onestein, "
"Trobz, "
"Odoo Community Association (OCA)",
"category": "web",
"license": "AGPL-3",
"application": False,
"installable": True,
"website": "https://github.com/OCA/web",
"depends": ["web"],
"qweb": ["static/src/xml/web_timeline.xml"],
"data": ["views/web_timeline.xml"],
"maintainers": ["tarteo"],
"application": False,
"installable": True,
}
2 changes: 1 addition & 1 deletion web_timeline/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2016 ACSONE SA/NV (<http://acsone.eu>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from . import ir_view
from . import ir_ui_view
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Copyright 2016 ACSONE SA/NV (<http://acsone.eu>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from openerp import fields, models
from odoo import fields, models

TIMELINE_VIEW = ("timeline", "Timeline")
TIMELINE_VIEW = ('timeline', 'Timeline')


class IrUIView(models.Model):
_inherit = "ir.ui.view"
_inherit = 'ir.ui.view'

type = fields.Selection(selection_add=[TIMELINE_VIEW])
1 change: 1 addition & 0 deletions web_timeline/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
* Leonardo Donelli <donelli@webmonks.it>
* Adrien Didenot <adrien.didenot@horanet.com>
* Dennis Sluijk <d.sluijk@onestein.nl>
* Thong Nguyen Van <thongnv@trobz.com>
2 changes: 2 additions & 0 deletions web_timeline/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -549,6 +549,7 @@ <h2><a class="toc-backref" href="#id6">Authors</a></h2>
<li>Tecnativa</li>
<li>Monk Software</li>
<li>Onestein</li>
<li>Trobz</li>
</ul>
</div>
<div class="section" id="contributors">
Expand All @@ -560,6 +561,7 @@ <h2><a class="toc-backref" href="#id7">Contributors</a></h2>
<li>Leonardo Donelli &lt;<a class="reference external" href="mailto:donelli&#64;webmonks.it">donelli&#64;webmonks.it</a>&gt;</li>
<li>Adrien Didenot &lt;<a class="reference external" href="mailto:adrien.didenot&#64;horanet.com">adrien.didenot&#64;horanet.com</a>&gt;</li>
<li>Dennis Sluijk &lt;<a class="reference external" href="mailto:d.sluijk&#64;onestein.nl">d.sluijk&#64;onestein.nl</a>&gt;</li>
<li>Thong Nguyen Van &lt;<a class="reference external" href="mailto:thongnv&#64;trobz.com">thongnv&#64;trobz.com</a>&gt;</li>
</ul>
</div>
<div class="section" id="other-credits">
Expand Down

Large diffs are not rendered by default.

53 changes: 53 additions & 0 deletions web_timeline/static/lib/vis-timeline/vis-timeline-graph2d.min.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion web_timeline/static/lib/vis/vis-timeline-graph2d.min.css

This file was deleted.

40 changes: 0 additions & 40 deletions web_timeline/static/lib/vis/vis-timeline-graph2d.min.js

This file was deleted.

Loading

0 comments on commit cc35a0b

Please sign in to comment.