mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
In order to get visibility on https://www.odoo.com/apps the OCA board has decided to add the OCA as author of all the addons maintained as part of the association.
48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# This file is part of web_dialog_sizes, an Odoo module.
|
|
#
|
|
# Copyright (c) 2015 ACSONE SA/NV (<http://acsone.eu>)
|
|
#
|
|
# web_expand_dialog is free software: you can redistribute it and/or
|
|
# modify it under the terms of the GNU Affero General Public License
|
|
# as published by the Free Software Foundation, either version 3 of
|
|
# the License, or (at your option) any later version.
|
|
#
|
|
# web_expand_dialog is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the
|
|
# GNU Affero General Public License
|
|
# along with web_expand_dialog.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
{
|
|
'name': "Web Dialog Size",
|
|
|
|
'summary': """
|
|
A module that lets the user expand a
|
|
dialog box to the full screen width.""",
|
|
|
|
'author': "ACSONE SA/NV,Odoo Community Association (OCA)",
|
|
'website': "http://acsone.eu",
|
|
|
|
'category': 'web',
|
|
'version': '0.1',
|
|
'license': 'AGPL-3',
|
|
|
|
'depends': [
|
|
'web',
|
|
],
|
|
'qweb': [
|
|
'static/src/xml/web_dialog_size.xml',
|
|
],
|
|
'data': [
|
|
'view/qweb.xml',
|
|
],
|
|
}
|