mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
Mostly rename things the other way around
than f836479461:
- __manifest__.py -> __openerp__.py
- .o_sub_menu_content -> .oe_secondary_menus_container
- .o_sub_menu_logo -> .oe_logo
- .o_sub_menu_foote -> .oe_footer
- .o_sub_menu -> .oe_leftbar
It also includes a complete refactor of #514, to make it work in v9.
23 lines
585 B
Python
Executable File
23 lines
585 B
Python
Executable File
# -*- coding: utf-8 -*-
|
|
# Copyright 2016 LasLabs Inc.
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
|
|
|
{
|
|
"name": "Web Responsive",
|
|
"summary": "It provides a mobile compliant interface for Odoo Community "
|
|
"web",
|
|
"version": "9.0.2.0.0",
|
|
"category": "Website",
|
|
"website": "https://laslabs.com/",
|
|
"author": "LasLabs, Tecnativa, Odoo Community Association (OCA)",
|
|
"license": "LGPL-3",
|
|
"installable": True,
|
|
"depends": [
|
|
'web',
|
|
],
|
|
"data": [
|
|
'views/assets.xml',
|
|
'views/web.xml',
|
|
],
|
|
}
|