mirror of https://github.com/OCA/web.git
[MIG] web_environment_ribbon: Migration to 15.0
parent
1f9d016984
commit
fb8423b133
|
@ -23,7 +23,7 @@ Web Environment Ribbon
|
|||
: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|
|
||||
|
||||
Mark a Test Environment with a red ribbon on the top left corner in every page
|
||||
|
||||
|
@ -79,6 +79,7 @@ Contributors
|
|||
* Xavier Jiménez <xavier.jimenez@qubiq.es>
|
||||
* Dennis Sluijk <d.sluijk@onestein.nl>
|
||||
* Eric Lembregts <eric@lembregts.eu>
|
||||
* Andreas Perhab <a.perhab@wtioit.at>
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
{
|
||||
"name": "Web Environment Ribbon",
|
||||
"version": "14.0.1.0.0",
|
||||
"version": "15.0.1.0.0",
|
||||
"category": "Web",
|
||||
"author": "Francesco OpenCode Apruzzese, "
|
||||
"Tecnativa, "
|
||||
|
@ -14,7 +14,14 @@
|
|||
"website": "https://github.com/OCA/web",
|
||||
"license": "AGPL-3",
|
||||
"depends": ["web"],
|
||||
"data": ["data/ribbon_data.xml", "view/base_view.xml"],
|
||||
"data": [
|
||||
"data/ribbon_data.xml",
|
||||
],
|
||||
"auto_install": False,
|
||||
"installable": True,
|
||||
"assets": {
|
||||
"web.assets_common": [
|
||||
"web_environment_ribbon/static/**/*",
|
||||
],
|
||||
},
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
from odoo.tests import common
|
||||
|
||||
|
||||
class TestEnvironmentRibbonData(common.SavepointCase):
|
||||
class TestEnvironmentRibbonData(common.TransactionCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super(TestEnvironmentRibbonData, cls).setUpClass()
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!-- Copyright 2015 Francesco OpenCode Apruzzese <cescoap@gmail.com>
|
||||
Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com>
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
||||
<odoo>
|
||||
<!-- Load css for ribbons -->
|
||||
<template
|
||||
id="assets_backend"
|
||||
name="ribbon_test assets"
|
||||
inherit_id="web.assets_backend"
|
||||
>
|
||||
<xpath expr="." position="inside">
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="/web_environment_ribbon/static/src/css/ribbon.css"
|
||||
/>
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/web_environment_ribbon/static/src/js/ribbon.js"
|
||||
/>
|
||||
</xpath>
|
||||
</template>
|
||||
</odoo>
|
Loading…
Reference in New Issue