mirror of https://github.com/OCA/web.git
[MIG] web_timeline: Migration to 15.0
parent
00d2cfda3c
commit
6782e1954d
|
@ -4,7 +4,7 @@
|
||||||
{
|
{
|
||||||
"name": "Web timeline",
|
"name": "Web timeline",
|
||||||
"summary": "Interactive visualization chart to show events in time",
|
"summary": "Interactive visualization chart to show events in time",
|
||||||
"version": "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
"development_status": "Production/Stable",
|
"development_status": "Production/Stable",
|
||||||
"author": "ACSONE SA/NV, "
|
"author": "ACSONE SA/NV, "
|
||||||
"Tecnativa, "
|
"Tecnativa, "
|
||||||
|
@ -17,8 +17,18 @@
|
||||||
"website": "https://github.com/OCA/web",
|
"website": "https://github.com/OCA/web",
|
||||||
"depends": ["web"],
|
"depends": ["web"],
|
||||||
"qweb": ["static/src/xml/web_timeline.xml"],
|
"qweb": ["static/src/xml/web_timeline.xml"],
|
||||||
"data": ["views/web_timeline.xml"],
|
"data": [],
|
||||||
"maintainers": ["tarteo"],
|
"maintainers": ["tarteo"],
|
||||||
"application": False,
|
"application": False,
|
||||||
"installable": True,
|
"installable": True,
|
||||||
|
"assets": {
|
||||||
|
"web.assets_backend": [
|
||||||
|
"web_timeline/static/src/scss/web_timeline.scss",
|
||||||
|
"web_timeline/static/src/js/timeline_view.js",
|
||||||
|
"web_timeline/static/src/js/timeline_renderer.js",
|
||||||
|
"web_timeline/static/src/js/timeline_controller.js",
|
||||||
|
"web_timeline/static/src/js/timeline_model.js",
|
||||||
|
"web_timeline/static/src/js/timeline_canvas.js",
|
||||||
|
]
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
* Laurent Mignon <laurent.mignon@acsone.eu>
|
* Laurent Mignon <laurent.mignon@acsone.eu>
|
||||||
* Adrien Peiffer <adrien.peiffer@acsone.eu>
|
* Adrien Peiffer <adrien.peiffer@acsone.eu>
|
||||||
* Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
|
||||||
* Leonardo Donelli <donelli@webmonks.it>
|
* Leonardo Donelli <donelli@webmonks.it>
|
||||||
* Adrien Didenot <adrien.didenot@horanet.com>
|
* Adrien Didenot <adrien.didenot@horanet.com>
|
||||||
* Dennis Sluijk <d.sluijk@onestein.nl>
|
* Dennis Sluijk <d.sluijk@onestein.nl>
|
||||||
* Thong Nguyen Van <thongnv@trobz.com>
|
* Thong Nguyen Van <thongnv@trobz.com>
|
||||||
* Alexandre Díaz <alexandre.diaz@tecnativa.com>
|
|
||||||
* Murtaza Mithaiwala <mmithaiwala@opensourceintegrators.com>
|
* Murtaza Mithaiwala <mmithaiwala@opensourceintegrators.com>
|
||||||
* Ammar Officewala <aofficewala@opensourceintegrators.com>
|
* Ammar Officewala <aofficewala@opensourceintegrators.com>
|
||||||
|
* `Tecnativa <https://www.tecnativa.com>`_:
|
||||||
|
|
||||||
|
* Pedro M. Baeza
|
||||||
|
* Alexandre Díaz
|
||||||
|
* César A. Sánchez
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" ?>
|
|
||||||
<odoo>
|
|
||||||
<template
|
|
||||||
id="assets_backend"
|
|
||||||
name="web_timeline assets"
|
|
||||||
inherit_id="web.assets_backend"
|
|
||||||
>
|
|
||||||
<xpath expr="." position="inside">
|
|
||||||
<link
|
|
||||||
rel="stylesheet"
|
|
||||||
type="text/scss"
|
|
||||||
href="/web_timeline/static/src/scss/web_timeline.scss"
|
|
||||||
/>
|
|
||||||
<script
|
|
||||||
type="text/javascript"
|
|
||||||
src="/web_timeline/static/src/js/timeline_view.js"
|
|
||||||
/>
|
|
||||||
<script
|
|
||||||
type="text/javascript"
|
|
||||||
src="/web_timeline/static/src/js/timeline_renderer.js"
|
|
||||||
/>
|
|
||||||
<script
|
|
||||||
type="text/javascript"
|
|
||||||
src="/web_timeline/static/src/js/timeline_controller.js"
|
|
||||||
/>
|
|
||||||
<script
|
|
||||||
type="text/javascript"
|
|
||||||
src="/web_timeline/static/src/js/timeline_model.js"
|
|
||||||
/>
|
|
||||||
<script
|
|
||||||
type="text/javascript"
|
|
||||||
src="/web_timeline/static/src/js/timeline_canvas.js"
|
|
||||||
/>
|
|
||||||
</xpath>
|
|
||||||
</template>
|
|
||||||
</odoo>
|
|
Loading…
Reference in New Issue